#reactjs
Read more stories on Hashnode
Articles with this tag
One-way and two-way data binding ยท Unidirectional (one-way) data flow You pass data down from parent to child component You can't update parent's state...
Today, I had to close a modal, after clicking outside of it. Here's how I've done it: export default function App() { const [open, setOpen] =...
Today I learned, what is the actual order of execution of React Query useMutation side effects. Given a mutation like this: const mutation =...