From c08ddf950e2756a3fddae4e963c9823c90c96550 Mon Sep 17 00:00:00 2001 From: nicolinabl Date: Wed, 18 Feb 2026 11:37:46 +0100 Subject: [PATCH] QuestList component --- frontend/src/components/QuestList.jsx | 6 ++++++ frontend/src/pages/UserProfilePage.jsx | 2 ++ 2 files changed, 8 insertions(+) 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 */} + {/* NOTE: hide add quest + list of quests by default? Only show when user clicks button? */}