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