Reactjs – How to offsett a list display?
I have a question concerning the display of a list in reactJS (with Next.JS). This is the usual way I display a list, using such code : theList.map((e:MyType) => <div key={e.orderNbr}> <DisplayOneListElement .... /> </div>) The list is then shown…