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]) =>