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

14 lines
306 B
TypeScript

import React from "react";
import { Box } from "@chakra-ui/react";
import Calender from "../components/calender/Calender";
const IndexPage = (): JSX.Element => {
return (
<Box textAlign="center" w="100%" h="auto" pt="50px" pb="10vh">
<Calender />
</Box>
);
};
export default IndexPage;