I\'m trying to get data from an array and using map function to render content. Look at
**{this.lapsList()}**
and the associated
Try moving the lapsList function out of your class and into your render function:
lapsList
render() { const lapsList = this.state.laps.map((data) => { return ( {data.time} ) }) return ( coucou test {lapsList} ) }