convert to named exports

This commit is contained in:
2022-12-11 13:11:01 +01:00
parent 78245b8501
commit 922424f669
9 changed files with 14 additions and 19 deletions

View File

@@ -1,8 +1,8 @@
import "../styles/globals.scss";
import type { AppProps } from "next/app";
import Navigation from "../components/Navigation/Navigation";
import Footer from "../components/Footer/Footer";
import SEO from "../components/SEO";
import { Navigation } from "../components/Navigation/Navigation";
import { Footer } from "../components/Footer/Footer";
import { SEO } from "../components/SEO";
export default function App({ Component, pageProps }: AppProps) {
return (