Jonathan Kong Boon Lieng
Results
1
issues of
Jonathan Kong Boon Lieng
## Context It is common to have instances where `React.useState()` code is unnecessarily re-creating its initial state: Example: ```js const Component = () => { const [state, setState] = useState(getInitialHundredItems());...