1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-19 01:24:09 +01:00
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;