|
|
@@ -38,6 +38,9 @@ type Props = {
|
|
|
|
|
|
export const GrowiSubNavigation = (props: Props): JSX.Element => {
|
|
|
|
|
|
+ const TagLabels = dynamic(() => import('../Page/TagLabels'), { ssr: false, loading: () => <Skelton width={124.5} height={21.99} /> });
|
|
|
+ const AuthorInfo = dynamic(() => import('./AuthorInfo'), { ssr: false, loading: () => <Skelton width={148.32} height={32.84} /> });
|
|
|
+
|
|
|
const { data: editorMode } = useEditorMode();
|
|
|
|
|
|
const {
|
|
|
@@ -61,8 +64,6 @@ export const GrowiSubNavigation = (props: Props): JSX.Element => {
|
|
|
return <></>;
|
|
|
}
|
|
|
|
|
|
- const TagLabels = dynamic(() => import('../Page/TagLabels'), { ssr: false, loading: () => <Skelton width={124.5} height={21.99} /> });
|
|
|
-
|
|
|
return (
|
|
|
<div className={
|
|
|
`grw-subnav ${styles['grw-subnav']} d-flex align-items-center justify-content-between`
|