code is like below,
const renderInfo = () => {
return (
<>
<div>Name</div>
<div>Name1</div>
<div>Type</div>
<div>Type1</div>
</>
);
};
I want it to display like below,
but is currently shown like this with above code

Could someone help me fix this alignment. thanks.
