Closed nachozullo closed 4 years ago
First of all, thanks for the great library.
I am implementing a library of folders and files like Google Drive. My goal is to dinamically update the treebeard when the user add or eliminate a file or folder.
It is possible?
i use something like: const [, reRender] = useState(false); . . . . const update = () => { /* things */ reRender(n => !n) }
const [, reRender] = useState(false); . . . . const update = () => { /* things */ reRender(n => !n) }
to force the update
First of all, thanks for the great library.
I am implementing a library of folders and files like Google Drive. My goal is to dinamically update the treebeard when the user add or eliminate a file or folder.
It is possible?