gen/src/Sites/Start/index.tsx
Enrico Bühler ded5f836c4
All checks were successful
continuous-integration/drone Build is passing
- initial commit
2022-04-24 18:21:17 +02:00

13 lines
231 B
TypeScript

import { Grid, Text } from "@chakra-ui/react";
import SectionTeamGenerator from "Sections/TeamGenerator";
const Home = () => {
return (
<Grid gap={4}>
<SectionTeamGenerator />
</Grid>
);
};
export default Home;