|
|
@@ -3,7 +3,6 @@ import React, { ReactNode } from 'react';
|
|
|
import dynamic from 'next/dynamic';
|
|
|
|
|
|
import { GrowiNavbar } from './Navbar/GrowiNavbar';
|
|
|
-// import GrowiNavbarBottom from './Navbar/GrowiNavbarBottom';
|
|
|
import { RawLayout } from './RawLayout';
|
|
|
|
|
|
|
|
|
@@ -18,6 +17,7 @@ export const BasicLayout = ({ children, title, className }: Props): JSX.Element
|
|
|
const Sidebar = dynamic(() => import('./Sidebar'), { ssr: false });
|
|
|
// const HotkeysManager = dynamic(() => import('../client/js/components/Hotkeys/HotkeysManager'), { ssr: false });
|
|
|
// const PageCreateModal = dynamic(() => import('../client/js/components/PageCreateModal'), { ssr: false });
|
|
|
+ const GrowiNavbarBottom = dynamic(() => import('./Navbar/GrowiNavbarBottom').then(mod => mod.GrowiNavbarBottom), { ssr: false });
|
|
|
const ShortcutsModal = dynamic(() => import('./ShortcutsModal'), { ssr: false });
|
|
|
const SystemVersion = dynamic(() => import('./SystemVersion'), { ssr: false });
|
|
|
|
|
|
@@ -36,8 +36,7 @@ export const BasicLayout = ({ children, title, className }: Props): JSX.Element
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- {/* <GrowiNavbarBottom /> */}
|
|
|
- GrowiNavbarBottom
|
|
|
+ <GrowiNavbarBottom />
|
|
|
</RawLayout>
|
|
|
|
|
|
{/* <PageCreateModal /> */}
|