|
@@ -70,6 +70,7 @@ import {
|
|
|
} from './utils/commons';
|
|
} from './utils/commons';
|
|
|
// import { useCurrentPageSWR } from '../stores/page';
|
|
// import { useCurrentPageSWR } from '../stores/page';
|
|
|
|
|
|
|
|
|
|
+import styles from './[[...path]].page.module.scss';
|
|
|
|
|
|
|
|
const NotCreatablePage = dynamic(() => import('../components/NotCreatablePage').then(mod => mod.NotCreatablePage), { ssr: false });
|
|
const NotCreatablePage = dynamic(() => import('../components/NotCreatablePage').then(mod => mod.NotCreatablePage), { ssr: false });
|
|
|
const ForbiddenPage = dynamic(() => import('../components/ForbiddenPage'), { ssr: false });
|
|
const ForbiddenPage = dynamic(() => import('../components/ForbiddenPage'), { ssr: false });
|
|
@@ -343,7 +344,7 @@ const GrowiPage: NextPage<Props> = (props: Props) => {
|
|
|
<i style={{ fontSize: '1.3em' }} className="fa fa-fw fa-bookmark-o"></i>
|
|
<i style={{ fontSize: '1.3em' }} className="fa fa-fw fa-bookmark-o"></i>
|
|
|
Bookmarks
|
|
Bookmarks
|
|
|
</h2>
|
|
</h2>
|
|
|
- <div id="user-bookmark-list" className="page-list">
|
|
|
|
|
|
|
+ <div id="user-bookmark-list" className={`page-list ${styles['page-list']}`}>
|
|
|
{/* TODO: No need page-list-container class ? */}
|
|
{/* TODO: No need page-list-container class ? */}
|
|
|
<div className="page-list-container">
|
|
<div className="page-list-container">
|
|
|
{/* <BookmarkList userId={pageContainer.state.creator._id} /> */}
|
|
{/* <BookmarkList userId={pageContainer.state.creator._id} /> */}
|
|
@@ -357,7 +358,7 @@ const GrowiPage: NextPage<Props> = (props: Props) => {
|
|
|
</i>
|
|
</i>
|
|
|
Recently Created
|
|
Recently Created
|
|
|
</h2>
|
|
</h2>
|
|
|
- <div id="user-created-list" className="page-list">
|
|
|
|
|
|
|
+ <div id="user-created-list" className={`page-list ${styles['page-list']}`}>
|
|
|
{/* TODO: No need page-list-container class ? */}
|
|
{/* TODO: No need page-list-container class ? */}
|
|
|
<div className="page-list-container">
|
|
<div className="page-list-container">
|
|
|
{/* <RecentCreated userId={pageContainer.state.creator._id} /> */}
|
|
{/* <RecentCreated userId={pageContainer.state.creator._id} /> */}
|