This commit is contained in:
MisbehavedNinjaRadiator 2025-06-18 16:59:04 +02:00
parent eba5d5edd7
commit d59021b109
4 changed files with 177 additions and 278 deletions

View file

@ -49,8 +49,9 @@ function Feed() {
return (
<div className="feedContainer">
<main className="feedContent" ref={feedRef}>^
<Post/>
<main className="feedContent" ref={feedRef}>
{posts.map((postId, idx) => (
<TestPost key={idx} postId={postId} />
))}