feat: add temaplate using new components to SharedStorage

main
Josue 4 years ago committed by Tsu-ba-me
parent 00a871d8f1
commit ce56ad092b
  1. 16
      striker-ui/components/SharedStorage.tsx

@ -1,10 +1,22 @@
import { Grid } from '@material-ui/core';
import InnerPanel from './InnerPanel';
import Panel from './Panel'; import Panel from './Panel';
import Text from './Text/HeaderText'; import { HeaderText, BodyText } from './Text';
const SharedStorage = (): JSX.Element => { const SharedStorage = (): JSX.Element => {
return ( return (
<Panel> <Panel>
<Text text="Shared Storage" /> <Grid container alignItems="center" justify="space-around">
<Grid item xs={12}>
<HeaderText text="Shared Storage" />
</Grid>
<Grid item xs={12}>
<BodyText text="Mount /mnt/shared" />
</Grid>
<Grid item xs={12}>
<InnerPanel />
</Grid>
</Grid>
</Panel> </Panel>
); );
}; };

Loading…
Cancel
Save