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