manifold/web/pages/_app.tsx
2021-12-02 17:39:11 -06:00

9 lines
195 B
TypeScript

import "tailwindcss/tailwind.css";
import type { AppProps } from "next/app";
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
export default MyApp;