icns-frontend/pages/_app.tsx

14 lines
303 B
TypeScript
Raw Normal View History

2022-11-30 10:36:59 +00:00
import type { AppProps } from "next/app";
import React from "react";
import { GlobalStyle } from "../styles/global";
2022-11-30 08:11:45 +00:00
export default function App({ Component, pageProps }: AppProps) {
return (
<React.Fragment>
<GlobalStyle />
<Component {...pageProps} />
</React.Fragment>
);
2022-11-30 08:11:45 +00:00
}