tasko-frontend/pages/profile.js

14 lines
260 B
JavaScript
Raw Normal View History

2020-01-20 12:33:29 +01:00
import Sidebar from "./components/Sidebar";
import Profile from "./components/Profile";
const ProfilePage = () => {
return (
<main>
<Sidebar/>
2020-01-20 13:11:45 +01:00
<Profile accountType=""/>
2020-01-20 12:33:29 +01:00
</main>
)
};
export default ProfilePage;