We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sometimes children can be arrays:
<div> {posts.map(post => <p>{post}</p>)} </div>
this causes problems for didact.
the solution is to just flatten children:
reconcileChildren(fiber, fiber.props.children.flat())
Activity