Unleash your Reactivity

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.

PostList.jsx
App.jsx
import useState from 'react';
import Post from './Post';
export default function Example () {
const [posts, setPosts] = useState (null);

return (
<ul>
{posts.map((post)=>(
<li key={post.id} >
<Post post={post} />
</li>
))}
</ul>
}