
Hello! I'm glad to see you here!
Read posts and share your own ideas.
To get started I suggest you register . It's quick - just a couple of moments, you just need to come up with a name, email and password.
You can also view the site without logging in or view the code on GitРub.
import useState from 'react';export default function Example () {
import Post from './Post';
const [posts, setPosts] = useState (null);
return (
<ul>
{posts.map((post)=>(
<li key={post.id} >
<Post post={post} />
</li>
))}
</ul>
}