You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
608 B
24 lines
608 B
import { Grid } from '@material-ui/core'; |
|
import InnerPanel from './InnerPanel'; |
|
import Panel from './Panel'; |
|
import { HeaderText, BodyText } from './Text'; |
|
|
|
const SharedStorage = (): JSX.Element => { |
|
return ( |
|
<Panel> |
|
<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> |
|
); |
|
}; |
|
|
|
export default SharedStorage;
|
|
|