Try this exercise. Fill in the missing part by typing it in.
To create routes in React Router, you need to:
Import the necessary components from the
react-router-dom
package, such as____________
,Route
, andLink
.Wrap your application component with the
____________
component. This component provides the routing functionality for your application.Define routes using the
____________
component. EachRoute
component specifies a path and the component to render when that path matches the current URL.
Write the missing line below.