Skip to content

Commit ae79840

Browse files
committed
fix: Component name in Contacts page.
1 parent 9826237 commit ae79840

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/Contacts.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import React from "react";
22
import Navbar from "../components/Navbar";
33
import Footer from "../components/Footer";
4-
import Building from "../components/Contact";
4+
import Contact from "../components/Contact";
55
const Contacts = () => {
66
return (
77
<div>
88
<Navbar />
9-
<Building />
9+
<Contact />
1010
<Footer />
1111
</div>
1212
);

0 commit comments

Comments
 (0)