简体   繁体   中英

How to render a JSX component for each item in array

I need to render one jsx component for each item in an array.

import { ListView } from './components'; // Custom component

const array = ["item1","item2","item3"];

export default function App() {
    return(
      <div>
        {/* Here i want to render a <ListView /> component for each of the items in the array. */}
     </div>
   );
}

Here there are 3 items in the array so i want to render 3 different components.

Any help will be appreciated.

Try to use map method:

return (
 <div>{ array.map(item => <ListView key={item} item={item} /> }</div>
)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM