pygmalion-web-frontend/src/routes/search.jsx

12 lines
195 B
React
Raw Normal View History

2023-01-15 10:29:59 +01:00
import NavBar from "../components/NavBar";
const Search = () => {
return (
<>
<NavBar />
<p>TODO search page</p>
</>
);
};
export default Search;