Feed with post views working

This commit is contained in:
aeroreyna
2022-03-06 20:31:50 -08:00
parent 352871786b
commit b948927e4c
6 changed files with 167 additions and 28 deletions

View File

@@ -23,7 +23,7 @@ let Feed = () => {
Posts.map((post, i) => {
return (
//<Text key={i}>{post.content}</Text>
<Post post={post} key={i}/>
<Post post={post} viewer={Me} key={i}/>
)
})
}