I have a very simple list with elements and I want to display it in multiple columns. what´s the best approach to do it?
const names = ["ferrari", "porsche", "audi", "ford", "fiat", "mercedes"]
<ul>
{names.map(name => (<li>{name}</li>))}
</ul>
how can I display it in 3 columns like this
ferrari porsche audi
ford fiat mercedes
I can use flexbox o whatever it takes! thank you