how to get the only the first value from map function in javascript code example
Example: get the first value when mapping through the array
if (index === 0) {
return (
<h1 className="box_list_header"
onClick={this.handleBackToRoomList}
>{room.room_name}</h1>
)
}