21 lines
583 B
TypeScript
21 lines
583 B
TypeScript
import Feed from "@/containers/Feed";
|
|
import Spinner from "@/components/spinner";
|
|
export default function ProfileFeed({ pubkey }: { pubkey: string }) {
|
|
return (
|
|
<div className="center w-full flex-col items-stretch space-y-6 text-primary">
|
|
<Feed
|
|
filter={{
|
|
authors: [pubkey],
|
|
kinds: [1],
|
|
}}
|
|
loader={() => (
|
|
<div className="center flex-col gap-y-4 pt-7 text-center">
|
|
<Spinner />
|
|
<p className="font-medium text-primary">Fetching notes...</p>
|
|
</div>
|
|
)}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|