import { useSignal } from "@preact/signals"; import { useEffect } from "preact/hooks"; import { PostListItem } from "../components/post-list-item.tsx"; interface PostRecord { value: any; uri: string; } export default function PostList({ posts: initialPosts }: { posts: PostRecord[] }) { const posts = useSignal(initialPosts); useEffect(() => { posts.value = initialPosts; }, [initialPosts]); return ( <> {posts.value?.map((record) => { const post = record.value; const rkey = record.uri.split("/").pop() || ""; return ( ); })} ); }