blob: 2865e64e9a4f794fa55f94c4427b633316855e06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import AppBar from '@material-ui/core/AppBar';
import Toolbar from '@material-ui/core/Toolbar';
import { PressureIcon } from '../components/icons';
import Loop from '../components/loop';
export default function Index() {
return <>
<AppBar position='static' color='transparent' elevation={0}>
<Toolbar>
<PressureIcon />
<h1>pressure</h1>
</Toolbar>
</AppBar>
<Loop width={100} />
</>;
}
|