Render a list of items from an array with proper key props.
const items = ['Apple', 'Banana', 'Cherry']; export default function App() { return <ul>{/* Render items */}</ul>; }