How to Wrap a React Component that Returns Multiple Table Rows and Avoid the “<tr> Cannot Appear as a Child of <div>” Error?

John Au-Yeung
JavaScript in Plain English
2 min readDec 21, 2023

--

Photo by Creative Headline on Unsplash

Sometimes, we may see the “<tr> cannot appear as a child of <div>” error in React when we wrap a div around a table row.

In this article, we’ll look at how to fix the “<tr> cannot appear as a child of <div>” error in React.

--

--