um-react/src/components/App.tsx

24 lines
537 B
TypeScript

import { Box, Center, Container } from '@chakra-ui/react';
import { SelectFile } from './SelectFile';
import { FileListing } from '~/features/file-listing/FileListing';
import { Footer } from './Footer';
import { Toolbar } from './Toolbar';
function App() {
return (
<Box height="full" width="full" pt="4">
<Container maxW="container.large">
<Center>
<SelectFile />
</Center>
<Toolbar />
<FileListing />
<Footer />
</Container>
</Box>
);
}
export default App;