What is the purpose of the <Route> component in React Router?
The <Route> component is used to define a route and render a component when the URL matches the specified path. It allows for dynamic rendering of components based on the current URL, making it a crucial part of client-side routing in React applications.