parent
4d55ab6b91
commit
e072ac7455
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||||||
|
import { Grid } from '@material-ui/core'; |
||||||
|
import Panel from './Panel'; |
||||||
|
import { HeaderText } from './Text'; |
||||||
|
|
||||||
|
const Network = (): JSX.Element => { |
||||||
|
return ( |
||||||
|
<Panel> |
||||||
|
<Grid container alignItems="center" justify="space-around"> |
||||||
|
<Grid item xs={12}> |
||||||
|
<HeaderText text="Network" /> |
||||||
|
</Grid> |
||||||
|
</Grid> |
||||||
|
</Panel> |
||||||
|
); |
||||||
|
}; |
||||||
|
|
||||||
|
export default Network; |
Loading…
Reference in new issue