Lijsten
Lijsten in React
let games : string[] = [
"World of Warcraft",
"Valheim",
"Minecraft"
]const App = () => {
return (
<div>
<h1>Welcome to the H2O Game shop</h1>
<div>{games.map((game: string) => {
return <div key={game}>{game}</div>
})}</div>
</div>
);
}Last updated
Was this helpful?