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

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