I have a collection of objects that include a name and description. The name is short and consists of only a few characters, while the description can vary in length. I am looking to showcase this data within Cards in my React project, and have tried using React Bootstrap.
My goal is to have the cards displayed with the same height and width, regardless of the content within them. If the space in one row is limited and cannot accommodate all the cards, they should automatically move to the next line.
I would like the layout to function similar to the row-col structure in Bootstrap.
How can I achieve this in React.js? Can I utilize React Bootstrap or another component to accomplish this?