How to use Navigation in ReactJS

 






import { useNavigate } from "react-router-dom"




export default function Home(){
    const navigation = useNavigate()
 
    return(
        <div className='div'>
        <h1>LOG IN</h1>
        <input type='email' className='input' placeholder='Email'/><br></br><br></br>
        <input type='password' className='input' placeholder='password'/><br></br>
        <button type="submit" className='button'onClick={()=>navigation('/login')} > Login </button>
         </div>
    )
}

 see this code on youtube click video


                            




Post a Comment

0 Comments