Spoof14
Spoof14
Also added a test in the demo that allows you to manipulate the underlying DataTable
Pass the original event as well in the handleChange function to allow you to get information like key pressed. Passed as additonal value to not break previous implementations
### Summary Remove useless useState and simply use ref ### Page _No response_ ### Details The docs in the 4th challenge suggest using both a useState and a ref for...
## Bug report ### Current Behavior With the simple example of ```tsx function App() { const [isChecked, setIsChecked] = useState(false); return ( setIsChecked((prev) => !prev)}> test ) } ``` The...