0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-03-20 14:57:26 +09:00
yude.jp/pages/_app.js
2021-05-21 18:36:19 +09:00

12 lines
258 B
JavaScript

import 'tailwindcss/tailwind.css';
import { ThemeProvider } from "next-themes";
function MyApp({ Component, pageProps }) {
return (
<ThemeProvider attribute="class">
<Component {...pageProps} />
</ThemeProvider>
);
}
export default MyApp;