How to redirect to another page using history on React js?
问题 I developed a Singnup page using Reactjs on the front-end and laravel on the backend and I want when I click on the button register, it will be redirected to my login page. My Signup component is : handleSubmit = event => { event.preventDefault(); const users = { name:this.state.name, email:this.state.email, cin:this.state.cin, phoneNumber:this.state.phoneNumber, birthDate:this.birthDate, password:this.state.password } console.log(users) axios({ method: 'post', url: 'http://172.16.234.24:8000