|
|
@@ -25,16 +25,16 @@ import { mutateSearching } from '~/stores/search';
|
|
|
|
|
|
import type { AdditionalMenuItemsRendererProps, ForceHideMenuItems } from '../Common/Dropdown/PageItemControl';
|
|
|
import type { GrowiSubNavigationProps } from '../Navbar/GrowiSubNavigation';
|
|
|
-import type { SubNavButtonsProps } from '../Navbar/SubNavButtons';
|
|
|
import { type RevisionLoaderProps } from '../Page/RevisionLoader';
|
|
|
import { type PageCommentProps } from '../PageComment';
|
|
|
import type { PageContentFooterProps } from '../PageContentFooter';
|
|
|
+import type { SubNavButtonsProps } from '../PageControls';
|
|
|
|
|
|
import styles from './SearchResultContent.module.scss';
|
|
|
|
|
|
|
|
|
const GrowiSubNavigation = dynamic<GrowiSubNavigationProps>(() => import('../Navbar/GrowiSubNavigation').then(mod => mod.GrowiSubNavigation), { ssr: false });
|
|
|
-const SubNavButtons = dynamic<SubNavButtonsProps>(() => import('../Navbar/SubNavButtons').then(mod => mod.SubNavButtons), { ssr: false });
|
|
|
+const SubNavButtons = dynamic<SubNavButtonsProps>(() => import('../PageControls').then(mod => mod.SubNavButtons), { ssr: false });
|
|
|
const RevisionLoader = dynamic<RevisionLoaderProps>(() => import('../Page/RevisionLoader').then(mod => mod.RevisionLoader), { ssr: false });
|
|
|
const PageComment = dynamic<PageCommentProps>(() => import('../PageComment').then(mod => mod.PageComment), { ssr: false });
|
|
|
const PageContentFooter = dynamic<PageContentFooterProps>(() => import('../PageContentFooter').then(mod => mod.PageContentFooter), { ssr: false });
|