From b46549485cc48abfafa0d50780254cb7ba0c2f31 Mon Sep 17 00:00:00 2001 From: Vencislav Atanasov Date: Thu, 19 Sep 2024 02:02:32 +0300 Subject: [PATCH] Add hall labels to schedule --- src/Schedule.jsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Schedule.jsx b/src/Schedule.jsx index 50a3263..415db29 100644 --- a/src/Schedule.jsx +++ b/src/Schedule.jsx @@ -11,13 +11,20 @@ export default function Schedule({ events, speakers, tracks, + halls, isLoading, loadingProgress, } = useSchedule(conferenceId); return (<> {isLoading &&

Loading...

} -
schedule goes here
+ {halls && + + + {Object.entries(halls).map(([hallId, hall]) => )} + + +
{hall.name[lang]}
} {tracks && Object.entries(tracks).map(([trackId, track]) =>