manifold/web/pages/_app.tsx

9 lines
195 B
TypeScript
Raw Normal View History

2021-12-02 23:39:11 +00:00
import "tailwindcss/tailwind.css";
import type { AppProps } from "next/app";
function MyApp({ Component, pageProps }: AppProps) {
2021-12-02 23:39:11 +00:00
return <Component {...pageProps} />;
}
2021-12-02 23:39:11 +00:00
export default MyApp;