February 2019
Beginner to intermediate
180 pages
4h 4m
English
In Router.re, we'll replace the /page1 route with the following:
/* Router.re */let routes = [ ... {href: "/customers", title: "Customer List", component: <CustomerList />} ...];
We'll also add the routes for /customers/create and /customers/:id:
/* Router.re */let routes = [ ... {href: "/customers/create", title: "Create Customer", component: <Customer />,}, {href: "/customers/:id", title: "Update Customer", component: <Customer />} ...];
Finally, be sure to also update the navigation menu in <App.re />:
/* App.re */render: self => ... <ul> <li> <NavLink href=" ...
Read now
Unlock full access