-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add tab for submissions view to flowSettings (#2884)
- Loading branch information
1 parent
da79ab9
commit 74ea05e
Showing
4 changed files
with
77 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
editor.planx.uk/src/pages/FlowEditor/components/Settings/Submissions/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import Box from "@mui/material/Box"; | ||
import Typography from "@mui/material/Typography"; | ||
import React from "react"; | ||
import { FeaturePlaceholder } from "ui/editor/FeaturePlaceholder"; | ||
|
||
const Submissions: React.FC = () => { | ||
return ( | ||
<Box> | ||
<Typography variant="h2" component="h3" gutterBottom> | ||
Submissions | ||
</Typography> | ||
<Typography variant="body1"> | ||
View data on the user submitted applications for this service. | ||
</Typography> | ||
<Box py={5}> | ||
<FeaturePlaceholder title="Feature in development" /> | ||
</Box> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default Submissions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters