Skip to content

Commit

Permalink
chore: remove unnecessary fragment wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike-Heneghan committed Mar 13, 2024
1 parent 1e84783 commit d67cec8
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,17 @@ import { FeaturePlaceholder } from "ui/editor/FeaturePlaceholder";

const DataManagerSettings: React.FC = () => {
return (
<>
<Box>
<Typography variant="h2" component="h3" gutterBottom>
Data Manager
</Typography>
<Typography variant="body1">
Manage the data that your service uses and makes available via its API
</Typography>
<Box py={5}>
<FeaturePlaceholder title="Feature in development" />
</Box>
<Box>
<Typography variant="h2" component="h3" gutterBottom>
Data Manager
</Typography>
<Typography variant="body1">
Manage the data that your service uses and makes available via its API
</Typography>
<Box py={5}>
<FeaturePlaceholder title="Feature in development" />
</Box>
</>
</Box>
);
};
export default DataManagerSettings;
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,18 @@ import { FeaturePlaceholder } from "ui/editor/FeaturePlaceholder";

const ServiceFlags: React.FC = () => {
return (
<>
<Box>
<Typography variant="h2" component="h3" gutterBottom>
Service flags
</Typography>
<Typography variant="body1">
Manage the flag sets that this service uses. Flags at the top of a set
override flags below.
</Typography>
<Box py={5}>
<FeaturePlaceholder title="Feature in development" />
</Box>
<Box>
<Typography variant="h2" component="h3" gutterBottom>
Service flags
</Typography>
<Typography variant="body1">
Manage the flag sets that this service uses. Flags at the top of a set
override flags below.
</Typography>
<Box py={5}>
<FeaturePlaceholder title="Feature in development" />
</Box>
</>
</Box>
);
};
export default ServiceFlags;
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,17 @@ 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>
<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>
);
};

Expand Down

0 comments on commit d67cec8

Please sign in to comment.