I'm getting this error at the end of Chapter 2 in App.js on <input placeholder="start"... and <button onClick...
How do I fix this?
//Add input fields to the UI for user input
<input
onChange={e => updateInputValues('limit', e.target.value)}
placeholder="limit"
/>
<input
placeholder="start"
onChange={e => updateInputValues('start', e.target.value)}
/>
//add button to the UI to give user the option to call the api
<button onClick={fetchCoins}>Fetch Coins</button>