componentDidMount() { axios.get('https://jsonplaceholder.typicode.com/todos',{ params: { _limit: 10 } }) .then((res) => { this.setState({ todos: res.data }); }) }