convert to named exports
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import SEO from "../components/SEO";
|
||||
import { SEO } from "../components/SEO";
|
||||
|
||||
const PageError404 = () => {
|
||||
return (
|
||||
|
||||
@@ -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 (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import SEO from "../components/SEO";
|
||||
import { SEO } from "../components/SEO";
|
||||
|
||||
const PageCytaty = () => {
|
||||
return (
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import styles from "../styles/Index.module.scss";
|
||||
|
||||
import { useEffect, useState } from "react";
|
||||
import SEO from "../components/SEO";
|
||||
import { SEO } from "../components/SEO";
|
||||
import config from "../data/config.json";
|
||||
|
||||
const PageIndex = () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import SEO from "../components/SEO";
|
||||
import { SEO } from "../components/SEO";
|
||||
|
||||
const PageInfo = () => {
|
||||
return (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import SEO from "../components/SEO";
|
||||
import { SEO } from "../components/SEO";
|
||||
|
||||
const PageRankingi = () => {
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user