1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-19 01:24:09 +01:00

19 lines
403 B
TypeScript
Raw Normal View History

2022-11-12 02:09:28 +05:30
import "../styles/globals.css";
import Head from "next/head";
import { AppProps } from "next/app";
2022-12-08 08:55:26 +05:30
import { useEffect } from "react";
import { themeChange } from "theme-change";
2022-11-12 02:09:28 +05:30
const MyApp = ({ Component, pageProps }: AppProps) => {
return (
2022-12-08 08:55:26 +05:30
<>
2022-11-12 02:09:28 +05:30
<Head>
<title>Upscayl</title>
</Head>
2022-12-08 08:55:26 +05:30
<Component {...pageProps} data-theme="dark" />
</>
2022-11-12 02:09:28 +05:30
);
};
export default MyApp;