I am using React Router. I want when the user clicks on the button, it directs them to the page (endpoint) /form which has the UserForm component.
Here is my code wrapping the button:
JavaScript
x
13
13
1
<Router>
2
<Link to="/form" className="updateLink">
3
<button className="updateBtn" onClick={() => {
4
this.update(id);
5
console.log(`Item Number: ${id} Was Updated Successfully`);
6
window.alert(`Item Number: ${id} Was Updated Successfully`);
7
}}>U</button>
8
</Link>
9
<Switch>
10
<Router exact path="/form" component={UserForm} />
11
</Switch>
12
</Router>
13