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

12 lines
192 B
React
Raw Normal View History

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