|
| 1 | +# 100 React Questions (Routing) |
| 2 | + |
| 3 | +## Q1. What is Routing and Router in React? `V. IMP.` |
| 4 | + |
| 5 | +### Routing |
| 6 | +Routing allows you to create a single-page web application with navigation, without the need for a full-page refresh. |
| 7 | + |
| 8 | +### React Router |
| 9 | + |
| 10 | +React Router is a library for handling routing and enables navigation and rendering of different components based on the URL. |
| 11 | + |
| 12 | +## Q2. How to Implement Routing in React? `V. IMP.` |
| 13 | + |
| 14 | +* Install React-Router |
| 15 | +* Create Navigation |
| 16 | +* Create Routes |
| 17 | + |
| 18 | +```bash |
| 19 | +npm install react-router-dom |
| 20 | +``` |
| 21 | + |
| 22 | +### Navbar.js |
| 23 | +```javascript |
| 24 | +import React from 'react'; |
| 25 | +import { Routes, Route, Link } from 'react-router-dom'; |
| 26 | + |
| 27 | +// Elements or imported components |
| 28 | +const Home = () => <h2>Home</h2>; |
| 29 | +const About = () => <h2>About</h2>; |
| 30 | +const Contact = () => <h2>Contact</h2>; |
| 31 | + |
| 32 | +const AppRoute = () => ( |
| 33 | + <div> |
| 34 | + {/* Navigation links */} |
| 35 | + <nav> |
| 36 | + <ul> |
| 37 | + <li><Link to="/">Home</Link></li> |
| 38 | + <li><Link to="/about">About</Link></li> |
| 39 | + <li><Link to="/contact">Contact</Link></li> |
| 40 | + </ul> |
| 41 | + </nav> |
| 42 | +``` |
| 43 | +
|
| 44 | +### index.js |
| 45 | +```javascript |
| 46 | +import AppRoute from './Others/AppRoute'; |
| 47 | +import { BrowserRouter as Router } from 'react-router-dom'; |
| 48 | + |
| 49 | +const root = ReactDOM.createRoot(document.getElementById('root')); |
| 50 | +root.render( |
| 51 | + <Router> |
| 52 | + <AppRoute /> |
| 53 | + </Router> |
| 54 | +); |
| 55 | + |
| 56 | + {/* Routes */} |
| 57 | + <Routes> |
| 58 | + <Route path="/" element={<Home />} /> |
| 59 | + <Route path="/about" element={<About />} /> |
| 60 | + <Route path="/contact" element={<Contact />} /> |
| 61 | + </Routes> |
| 62 | + </div> |
| 63 | +); |
| 64 | + |
| 65 | +export default AppRoute; |
| 66 | +``` |
| 67 | + |
| 68 | +## Q3. What are the roles of <Routes> & <Route> component in React Routing? `V. IMP.` |
| 69 | + |
| 70 | +* The <Routes> component is used as the root container for declaring your `collection of routes`. |
| 71 | +* The <Route> component is used to define a route and specify the component that should render when the `route matches`. |
| 72 | + * For example, in this code if user enter "websitename.com/about [invalid URL removed]" in url, then matching "About" component will be rendered. |
| 73 | + |
| 74 | +```javascript |
| 75 | +import React from 'react'; |
| 76 | +import { Routes, Route, Link } from 'react-router-dom'; |
| 77 | + |
| 78 | + <Routes> |
| 79 | + <Route path="/" element={<Home />} /> |
| 80 | + <Route path="/about" element={<About />} /> |
| 81 | + <Route path="/contact" element={<Contact />} /> |
| 82 | + </Routes> |
| 83 | +``` |
| 84 | + |
| 85 | +## Q4. What are Route Parameters in React Routing? |
| 86 | + |
| 87 | +Route parameters in React Router are a way to pass dynamic values(data) to the component `as part of the URL path`. |
| 88 | + |
| 89 | +```javascript |
| 90 | +{/* userId is the route parameter */} |
| 91 | +<Route path="/users/:userId" component={UserProfile}/> |
| 92 | +``` |
| 93 | + |
| 94 | +## Q5. What is the role of Switch Component in React Routing? |
| 95 | + |
| 96 | +* Switch component ensures that only the `first matching <Route> is rendered` and rest are ignored. |
| 97 | + * For example, Switch is commonly used to handle 404 or "not fount" routes. |
| 98 | + |
| 99 | +```javascript |
| 100 | +import {Switch, Route} from 'react-router-dom'; |
| 101 | +<Switch> |
| 102 | + <Route path="/users" component={UserList}/> |
| 103 | + <Route path="/users/:id" component={UserProfile}/> |
| 104 | +</Switch> |
| 105 | +``` |
| 106 | + |
| 107 | +## Q6. What is the role of exact prop in React Routing? |
| 108 | + |
| 109 | +exact prop is used with the <Route> component to `match exactly` to the provided path. |
| 110 | + |
| 111 | +```javascript |
| 112 | +{/*Without exact (default behavior)*/} |
| 113 | +{/*Match /about, /about/team, /about/contact, etc.*/} |
| 114 | +<Route path="/about" component={About} /> |
| 115 | +``` |
| 116 | +```javascript |
| 117 | +{/*With exact*/} |
| 118 | +{/*Only match /about*/} |
| 119 | +<Route path="/about" exact component={About} /> |
| 120 | +``` |
| 121 | + |
| 122 | + |
| 123 | +<!--- |
| 124 | +Adarsh |
| 125 | +2nd August 2024 |
| 126 | +09:52 PM |
| 127 | +(20:29) |
| 128 | +---> |
0 commit comments