1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-24 19:38:22 +02:00
upscayl/renderer/pages/_app.tsx
2022-12-08 08:55:26 +05:30

19 lines
403 B
TypeScript

import "../styles/globals.css";
import Head from "next/head";
import { AppProps } from "next/app";
import { useEffect } from "react";
import { themeChange } from "theme-change";
const MyApp = ({ Component, pageProps }: AppProps) => {
return (
<>
<Head>
<title>Upscayl</title>
</Head>
<Component {...pageProps} data-theme="dark" />
</>
);
};
export default MyApp;