mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-12 09:50:56 +01:00
17 lines
330 B
TypeScript
17 lines
330 B
TypeScript
import "../styles/globals.css";
|
|
import Head from "next/head";
|
|
import { AppProps } from "next/app";
|
|
|
|
const MyApp = ({ Component, pageProps }: AppProps) => {
|
|
return (
|
|
<div data-theme="dark">
|
|
<Head>
|
|
<title>Upscayl</title>
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default MyApp;
|