react-code-dataset
/
next.js
/test
/development
/app-dir
/owner-stack-react-missing-key-prop
/app
/rsc
/page.tsx
| const list = [1, 2, 3] | |
| export default function Page() { | |
| return ( | |
| <div> | |
| {list.map((item, index) => ( | |
| <span>{item}</span> | |
| ))} | |
| </div> | |
| ) | |
| } | |