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

20 lines
426 B
TypeScript

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