0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-09-28 23:50:24 +09:00
yude.jp/pages/_app.js

13 lines
289 B
JavaScript
Raw Normal View History

2021-05-21 18:36:19 +09:00
import 'tailwindcss/tailwind.css';
import { ThemeProvider } from "next-themes";
2021-05-23 16:01:37 +09:00
import "../styles/globals.css"
2021-05-21 18:36:19 +09:00
function MyApp({ Component, pageProps }) {
return (
<ThemeProvider attribute="class">
<Component {...pageProps} />
</ThemeProvider>
);
}
export default MyApp;