icns-frontend/pages/_app.tsx

7 lines
182 B
TypeScript
Raw Normal View History

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