Lists
import Recks from 'recks';
function App() {
const items = ['a', 'b', 'c', 'd'];
return <ul>{
items.map(letter => <li key={letter}>{letter}</li>)
}</ul>
}Last updated
Was this helpful?
import Recks from 'recks';
function App() {
const items = ['a', 'b', 'c', 'd'];
return <ul>{
items.map(letter => <li key={letter}>{letter}</li>)
}</ul>
}Last updated
Was this helpful?
Was this helpful?