Home
NOTE: I'm in the middle of upgrading the site. Most things are in place, but some things are missing and/or broken. This includes alt text for images. Please bear with me while I get things fixed.

Call A Function From onClick in React

This is an example of how to call a function from onClick in react to update the state of an item :

const [pageFetchInProgress, setPageFetchInProgress] = React.useState(false)

<button onClick={() => setPageFetchInProgress(true)}>Check Status</button>

This is the fix for this which would start an infinite loop which react kills :

<button onClick={setPageFetchInProgress(true)}>Check Status</button>
~ fin ~