2022-01-06 05:27:13 +00:00
|
|
|
import "../styles/main.css";
|
2022-03-11 10:43:00 +00:00
|
|
|
import "../styles/tw_main.css";
|
2022-01-06 05:27:13 +00:00
|
|
|
import { Fragment } from "react";
|
|
|
|
|
2023-07-19 14:49:15 +00:00
|
|
|
import type { AppProps } from "next/app";
|
|
|
|
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
2022-01-06 05:27:13 +00:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<Component {...pageProps} />
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MyApp;
|