|
|
|
|
@ -44,7 +44,6 @@ const Explore = () => {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<section className="page-wrapper explore">
|
|
|
|
|
{loadingState.isLoading ? null : (
|
|
|
|
|
<div className="page-container">
|
|
|
|
|
<div className="page-header">
|
|
|
|
|
<img className="logo-img" src="/logo-full.webp" alt="" />
|
|
|
|
|
@ -60,6 +59,7 @@ const Explore = () => {
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{loadingState.isLoading ? null : (
|
|
|
|
|
<main className="memos-wrapper">
|
|
|
|
|
{state.memos.map((memo) => {
|
|
|
|
|
const createdAtStr = dayjs(memo.createdTs).locale(locale).format("YYYY/MM/DD HH:mm:ss");
|
|
|
|
|
@ -78,8 +78,8 @@ const Explore = () => {
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|