Skip to content

Commit

Permalink
Remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 committed Oct 20, 2023
1 parent 49f5416 commit 8dad761
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import Head from "next/head";
import NavBar from '../components/navbar'
import Layout from '../components/layout'
import Footer from '../components/footer'
import 'material-icons/iconfont/material-icons.css';
import '../styles/globals.css'
import NavBar from "../components/navbar";
import Layout from "../components/layout";
import Footer from "../components/footer";
import "../styles/globals.css";

export default function MyApp({ Component, pageProps }) {
return (
Expand All @@ -18,5 +17,5 @@ export default function MyApp({ Component, pageProps }) {
</Layout>
<Footer />
</>
)
}
);
}

0 comments on commit 8dad761

Please sign in to comment.