import type { AppProps } from "next/app"; import React from "react"; import { ChakraProvider } from "@chakra-ui/react"; import AppTheme from "../theme/AppTheme"; import { Provider } from "react-redux"; import { store } from "../redux/store"; import Layout from "../theme/layout/Layout"; import Head from "next/head"; function LCMPottyChart({ Component, pageProps }: AppProps): JSX.Element { return ( {"LCM Potty Chart"} ); } export default LCMPottyChart;