14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
import "../styles/main.css";
|
|
import "../styles/tw_main.css";
|
|
import { Fragment } from "react";
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<Fragment>
|
|
<Component {...pageProps} />
|
|
</Fragment>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|