October 2019
Intermediate to advanced
426 pages
11h 49m
English
These Hooks are part of the Navi library, and are used to implement routing via Hooks in React. The Navi library provides many more routing-related Hooks. We are going to learn about routing via Hooks, in depth, later on in the book. We can use them as follows:
import { useCurrentRoute, useNavigation } from 'react-navi'const { views, url, data, status } = useCurrentRoute()const { navigate } = useNavigation()
As we can see, Hooks make routing much easier to deal with.
Read now
Unlock full access