blob: 3377149cd6bb3b15f98616a253e374f456169d76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import AppBar from '@material-ui/core/AppBar';
import Toolbar from '@material-ui/core/Toolbar';
import { PressureIcon } from '../components/icons';
export default function Index() {
return <>
<div className='appGrid posabs a0'>
<AppBar position='static' color='transparent' elevation={0}>
<Toolbar>
<PressureIcon />
<h1>pressure</h1>
</Toolbar>
</AppBar>
<div className='settings'></div>
<div className='viewer'></div>
<div className='tools'></div>
<div className='timeline'></div>
</div>
</>;
}
|