OneCompiler

How to change the page title programmatically in react?

I want to change the page title whenever the user clicks on the button. How can I do it?

<button>click</button>

1 Answer

5 years ago by

You can use the document object

<button onClick={()=> {
   document.title = "Clicked"
   }>click</button>
5 years ago by Divya