um-react/src/App.tsx

26 lines
615 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>
{localStorage.__dev_test === '1' && <WasmTest />}
<Footer />
</Container>
</Box>
);
}
export default App;