kenken999's picture
test
63f6011
raw
history blame
285 Bytes
import React from "react";
const Navigation = () => {
return (
<nav>
<ul>
<li><a href="#">Language Schools</a></li>
<li><a href="#">Customized Plans</a></li>
</ul>
</nav>
);
};
export default Navigation;