Add channel joining UI, closes #37
This commit is contained in:
parent
f25594e962
commit
24b26aa85f
20 changed files with 1131 additions and 177 deletions
|
@ -19,6 +19,7 @@ const App = ({
|
|||
select,
|
||||
push,
|
||||
hideMenu,
|
||||
openModal,
|
||||
newVersionAvailable,
|
||||
hasOpenModals
|
||||
}) => {
|
||||
|
@ -59,10 +60,10 @@ const App = ({
|
|||
showTabList={showTabList}
|
||||
select={select}
|
||||
push={push}
|
||||
openModal={openModal}
|
||||
/>
|
||||
<div className={mainClass}>
|
||||
<Suspense fallback={<div className="suspense-fallback">...</div>}>
|
||||
{renderModals && <Modals />}
|
||||
<Route name="chat">
|
||||
<Chat />
|
||||
</Route>
|
||||
|
@ -73,6 +74,11 @@ const App = ({
|
|||
<Settings />
|
||||
</Route>
|
||||
</Suspense>
|
||||
<Suspense
|
||||
fallback={<div className="suspense-modal-fallback">...</div>}
|
||||
>
|
||||
{renderModals && <Modals />}
|
||||
</Suspense>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue