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