aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/App.tsx
blob: 3a25f43a00fff328eaa3f4b78be914ddb537bed3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Stack from '@mui/material/Stack';
import React from 'react';

import TopBar from './TopBar';
import EditorPane from './editor/EditorPane';

export default function App(): JSX.Element {
  return (
    <Stack direction="column" height="100vh" overflow="auto">
      <TopBar />
      <EditorPane />
    </Stack>
  );
}