From 4657e58b52cb53e5cf1d5ddff397bba91114998c Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 9 Sep 2022 08:22:49 +0800 Subject: [PATCH] chore: update loading section --- web/src/pages/Explore.tsx | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/web/src/pages/Explore.tsx b/web/src/pages/Explore.tsx index 9959b298..88f48fde 100644 --- a/web/src/pages/Explore.tsx +++ b/web/src/pages/Explore.tsx @@ -44,22 +44,22 @@ const Explore = () => { return (
- {loadingState.isLoading ? null : ( -
-
- -
- {user ? ( - - ) : ( - - )} -
+
+
+ +
+ {user ? ( + + ) : ( + + )}
+
+ {loadingState.isLoading ? null : (
{state.memos.map((memo) => { const createdAtStr = dayjs(memo.createdTs).locale(locale).format("YYYY/MM/DD HH:mm:ss"); @@ -78,8 +78,8 @@ const Explore = () => { ); })}
-
- )} + )} +
); };