um-react/src/components/App.tsx

24 lines
518 B
TypeScript
Raw Normal View History

2023-05-07 22:29:37 +00:00
import { Box, Center, Container } from '@chakra-ui/react';
2023-05-07 19:11:16 +00:00
import { SelectFile } from './SelectFile';
2023-06-03 13:13:37 +00:00
import { FileListing } from '~/features/file-listing/FileListing';
2023-05-07 22:29:37 +00:00
import { Footer } from './Footer';
2023-05-07 19:11:16 +00:00
function App() {
return (
2023-05-07 22:29:37 +00:00
<Box height="full" width="full" pt="4">
<Container maxW="container.large">
<Center>
<SelectFile />
</Center>
<Box mt="8">
<FileListing />
</Box>
<Footer />
</Container>
</Box>
2023-05-07 19:11:16 +00:00
);
}
export default App;