const onClick = async () => { try { const res = await axios.get( 'https://jsonplaceholder.typicode.com/todos/1' ) setData(res.data) } catch (e){ console.log(e) } }