This repository has been archived on 2025-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
lcm-potty-chart/pages/index.tsx
Lucid Kobold 4ec4be5a12 init
2021-11-13 17:11:29 -06:00

15 lines
302 B
TypeScript

import React from "react";
import { Box, Heading } from "@chakra-ui/react";
const IndexPage = (): JSX.Element => {
return (
<Box textAlign="center" w="100%" h="auto" py="10vh">
<Heading as="h1" size="2xl">
Hello World
</Heading>
</Box>
);
};
export default IndexPage;