diff --git a/src/app/daily/pages/index.page.tsx b/src/app/daily/pages/index.page.tsx index 3446d291..1f5f9248 100644 --- a/src/app/daily/pages/index.page.tsx +++ b/src/app/daily/pages/index.page.tsx @@ -45,48 +45,51 @@ export function Page() { }, [fetchNextPage, allRows.length, rowVirtualizer.getVirtualItems()]); return ( -
- {status === 'loading' ? ( - - ) : status === 'error' ? ( -
{error.message}
- ) : ( -
-
+
+
+
+ {status === 'loading' ? ( + + ) : status === 'error' ? ( +
{error.message}
+ ) : ( +
- {rowVirtualizer.getVirtualItems().map((virtualRow) => { - const note = allRows[virtualRow.index]; - if (note) { - if (note.kind === 1) { - return ( -
- -
- ); - } else { - return ( -
- -
- ); +
+ {rowVirtualizer.getVirtualItems().map((virtualRow) => { + const note = allRows[virtualRow.index]; + if (note) { + if (note.kind === 1) { + return ( +
+ +
+ ); + } else { + return ( +
+ +
+ ); + } } - } - })} + })} +
-
- )} -
{isFetching && !isFetchingNextPage ? : null}
+ )} +
{isFetching && !isFetchingNextPage ? : null}
+
); } diff --git a/src/app/myspace/pages/index.page.tsx b/src/app/myspace/pages/index.page.tsx index 7d1e0b71..4b08501d 100644 --- a/src/app/myspace/pages/index.page.tsx +++ b/src/app/myspace/pages/index.page.tsx @@ -1,3 +1,7 @@ -export default function Page() { - return <>; +export function Page() { + return ( +
+

MySpace

+
+ ); } diff --git a/src/app/threads/pages/index.page.tsx b/src/app/threads/pages/index.page.tsx index 7d1e0b71..4b08501d 100644 --- a/src/app/threads/pages/index.page.tsx +++ b/src/app/threads/pages/index.page.tsx @@ -1,3 +1,7 @@ -export default function Page() { - return <>; +export function Page() { + return ( +
+

MySpace

+
+ ); }