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

12 lines
271 B
JavaScript
Raw Normal View History

2021-05-21 18:36:19 +09:00
import 'tailwindcss/tailwind.css';
import { ThemeProvider } from 'tailwind-darkmode-toggle';
2021-05-21 18:36:19 +09:00
function MyApp({ Component, pageProps }) {
return (
<ThemeProvider attribute="class">
<Component {...pageProps} />
</ThemeProvider>
);
}
export default MyApp;