Files
004_comission/givefortune/task3-quote/src/LostAndFoundPage.js
louiscklaw 893eaee67b update,
2025-01-31 19:47:49 +08:00

18 lines
384 B
JavaScript

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;