keigo-h 3 лет назад
Родитель
Сommit
c4d6d07970
1 измененных файлов с 6 добавлено и 2 удалено
  1. 6 2
      packages/app/src/pages/tags.page.tsx

+ 6 - 2
packages/app/src/pages/tags.page.tsx

@@ -9,8 +9,8 @@ import TagList from '~/components/TagList';
 import { IDataTagCount } from '~/interfaces/tag';
 import { useSWRxTagsList } from '~/stores/tag';
 
-import { BasicLayout } from '../components/BasicLayout';
-import { CommonProps } from './commons';
+import { BasicLayout } from '../components/Layout/BasicLayout';
+import { CommonProps } from './utils/commons';
 
 const PAGING_LIMIT = 10;
 
@@ -66,4 +66,8 @@ const TagPage: NextPage<CommonProps> = () => {
 
 };
 
+// export async function getStaticProps(context) {
+
+// }
+
 export default TagPage;