easy
+10 XP
FRONTEND

List Rendering

Render a list of items from an array with proper key props.
You're exploring as a guest. Create a free account to save progress and submit solutions.
const items = ['Apple', 'Banana', 'Cherry'];

export default function App() {
  return <ul>{/* Render items */}</ul>;
}