Skip to content
Advertisement

Hide message after a few seconds in React

The question is about hiding a message after 5 seconds.

In the code below, if I click on the Generate Room Name button , it will generate the url in the textbox. I will be copying that url using the Copy button and a “Copied to clipboard” message will be displayed. I want to hide that message after 5 seconds. Please someone look into it.

JavaScript

Thanks

Advertisement

Answer

It’s enough to clear the copySuccess state after 5000 ms:

JavaScript
Advertisement