Files
sanasto-app/components/pages/Profile.jsx
2020-12-20 23:45:08 -06:00

12 lines
223 B
JavaScript

import { homeItems } from "../../data";
import Content from "../Content";
const Profile = ({ selected }) => {
return (
<Content visible={selected}>
<h2>Profile</h2>
</Content>
)
}
export default Profile;