kopia lustrzana https://github.com/bugout-dev/moonstream
adding Suspense
rodzic
306f45772b
commit
14b444f13c
|
@ -1,6 +1,6 @@
|
||||||
import { Flex, Spinner, Box } from "@chakra-ui/react";
|
import { Flex, Spinner, Box } from "@chakra-ui/react";
|
||||||
import { getLayout as getSiteLayout } from "./RootLayout";
|
import { getLayout as getSiteLayout } from "./RootLayout";
|
||||||
import React, { useContext, useEffect } from "react";
|
import React, { Suspense, useContext, useEffect } from "react";
|
||||||
import UIContext from "../core/providers/UIProvider/context";
|
import UIContext from "../core/providers/UIProvider/context";
|
||||||
import AppNavbar from "../components/AppNavbar";
|
import AppNavbar from "../components/AppNavbar";
|
||||||
import { BACKGROUND_COLOR } from "../core/constants";
|
import { BACKGROUND_COLOR } from "../core/constants";
|
||||||
|
@ -64,7 +64,9 @@ const AppLayout = ({ children }) => {
|
||||||
h="100%"
|
h="100%"
|
||||||
maxH="100%"
|
maxH="100%"
|
||||||
>
|
>
|
||||||
<Sidebar />
|
<Suspense fallback="">
|
||||||
|
<Sidebar />
|
||||||
|
</Suspense>
|
||||||
{ui.isAppReady && ui.isLoggedIn && children}
|
{ui.isAppReady && ui.isLoggedIn && children}
|
||||||
</Flex>
|
</Flex>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
|
Ładowanie…
Reference in New Issue