import Feed from "@/containers/Feed"; import Spinner from "@/components/spinner"; export default function ProfileFeed({ pubkey, alt, }: { pubkey: string; alt?: string; }) { const authors = [pubkey]; if (alt) { authors.push(alt); } return (
(

Fetching notes...

)} />
); }