I'm a beginner using React to create a website. We are trying to create a table where each row contains different details of information about an object. Specifically, we are trying to create rows like this.
From my perspective, our approach should be to create a list of these entry objects and somehow map their components into each row of a table. It would also be best if the table were not restricted to columns via key/value pairs such as the ones discussed in this post.
Any advice or guidance would be appreciated.