Abdus

Results 2 comments of Abdus

@goliakshay357 I can think of a simple method of making a file version-controlled. Consider the first 'save' of a file as the main record. Then, every time a user makes...

you could do something like this: ```javascript const history = useHistory(); function handleClick(elementId) { if (window.location.pathname !== "/") { history.push(`/`); let element = window.document.getElementById(elementId); setTimeout(() => { // wait for...