React Array (배열 출력)
2021.05.11
React에서 배열출력 #1. 하나씩 출력하는 방법 import React from 'react'; function UserList() { const users = [ { id: 1, username: 'velopert', email: 'public.velopert@gmail.com' }, { id: 2, username: 'tester', email: 'tester@example.com' }, { id: 3, username: 'liz', email: 'liz@example.com' } ]; return ( {users[0].username} {users[0].email} {users[1].username} {users[1].email} {users[2].username} {users[2].email}..