You may click here to see my code.
I want to make the following div can be scrollable:
<div className="m-0 p-0">
{a}
</div>
I tried the following:
<div className="d-flex flex-column-reverse flex-wrap m-0 p-0">
{a}
</div>
But no luck, would you help me to fix the problem?