Added UL component
This commit is contained in:
parent
39011afea7
commit
48a314ae84
@ -0,0 +1,9 @@
|
||||
import React from "react";
|
||||
|
||||
export function UList(props){
|
||||
return (<div>
|
||||
<ul>
|
||||
{props.listItems.map((item) => (<li className="white-text">{item}</li>))}
|
||||
</ul>
|
||||
</div>)
|
||||
}
|
||||
Reference in New Issue
Block a user