diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-05-14 12:07:47 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-05-14 12:07:47 +0200 |
commit | 589c8239b2085815405329e0dc46d12d763cb32b (patch) | |
tree | 9f16816f5032d8ca35be6ee4a88275d7a3d27c3e /pages/editor.tsx | |
parent | 45ba5f546b27de69a8134c04c354226711af080c (diff) |
editor layout
Diffstat (limited to 'pages/editor.tsx')
-rw-r--r-- | pages/editor.tsx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pages/editor.tsx b/pages/editor.tsx new file mode 100644 index 0000000..3377149 --- /dev/null +++ b/pages/editor.tsx @@ -0,0 +1,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> + </>; +} |