mirror of
https://git.unlock-music.dev/um/um-react.git
synced 2024-11-24 00:42:16 +00:00
24 lines
518 B
TypeScript
24 lines
518 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';
|
|
|
|
function App() {
|
|
return (
|
|
<Box height="full" width="full" pt="4">
|
|
<Container maxW="container.large">
|
|
<Center>
|
|
<SelectFile />
|
|
</Center>
|
|
<Box mt="8">
|
|
<FileListing />
|
|
</Box>
|
|
<Footer />
|
|
</Container>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default App;
|