update,
This commit is contained in:
17
givefortune/task3-quote/src/LostAndFoundPage.js
Normal file
17
givefortune/task3-quote/src/LostAndFoundPage.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import React from "react";
|
||||
import NewNavbar from "./NewNavbar";
|
||||
import Footer from "./components/Footer";
|
||||
import MapDisplay from "./components/MapDisplay";
|
||||
import MapButtons from "./components/MapButtons";
|
||||
|
||||
const LostAndFound = () => {
|
||||
return (
|
||||
<div>
|
||||
<NewNavbar />
|
||||
<MapButtons />
|
||||
<MapDisplay />
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
export default LostAndFound;
|
Reference in New Issue
Block a user