diff --git a/frontend/src/components/QuestList.jsx b/frontend/src/components/QuestList.jsx index e69de29bb2..a2faa3b4d9 100644 --- a/frontend/src/components/QuestList.jsx +++ b/frontend/src/components/QuestList.jsx @@ -0,0 +1,6 @@ +export const QuestList = () => { + return ( + // FIXME map through quests and list them +
List of quests
+ ) +} \ No newline at end of file diff --git a/frontend/src/pages/UserProfilePage.jsx b/frontend/src/pages/UserProfilePage.jsx index c1b1635bd7..50ffdb10d6 100644 --- a/frontend/src/pages/UserProfilePage.jsx +++ b/frontend/src/pages/UserProfilePage.jsx @@ -6,6 +6,7 @@ import { QuestLibrary } from '../components/QuestLibrary' import { Avatar } from '../components/Avatar' import { Strike } from '../components/StrikeDisplay' import { Link } from 'react-router-dom' +import { QuestList } from '../components/QuestList' export const UserProfile = () => { return ( @@ -19,6 +20,7 @@ export const UserProfile = () => { {/* TODO: modal for getting quest of the day */}