Add loading.tsx for mine

This commit is contained in:
Max Leiter 2023-01-28 23:52:04 -08:00
parent 1acbb52e27
commit a64cc78eed

7
src/app/mine/loading.tsx Normal file
View file

@ -0,0 +1,7 @@
"use client"
import PostList from "@components/post-list"
export default function Loading() {
return <PostList skeleton={true} initialPosts={[]} />
}