Last active
July 6, 2023 04:02
-
-
Save siakaramalegos/df4620c52e829f6107c75d5c3f0ad7f5 to your computer and use it in GitHub Desktop.
Basic example of React Router: BrowserRouter, Link, Route, and Switch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// BrowserRouter is the router implementation for HTML5 browsers (vs Native). | |
// Link is your replacement for anchor tags. | |
// Route is the conditionally shown component based on matching a path to a URL. | |
// Switch returns only the first matching route rather than all matching routes. | |
import { | |
BrowserRouter as Router, | |
Link, | |
Route, | |
Switch, | |
} from 'react-router-dom'; | |
import React from 'react'; | |
const Home = () => <h1>Home</h1>; | |
const About = () => <h1>About</h1>; | |
// We give each route either a target `component`, or we can send functions in `render` or `children` | |
// that return valid nodes. `children` always returns the given node whether there is a match or not. | |
const App = () => ( | |
<Router> | |
<div> | |
<Link to="/">Home</Link>{' '} | |
<Link to={{pathname: '/about'}}>About</Link>{' '} | |
<Link to="/contact">Contact</Link> | |
<Switch> | |
<Route path="/" component={Home} /> | |
<Route path="/about" component={About} /> | |
<Route | |
path="/contact" | |
render={() => <h1>Contact Us</h1>} /> | |
<Route path="/blog" children={({match}) => ( | |
<li className={match ? 'active' : ''}> | |
<Link to="/blog">Blog</Link> | |
</li>)} /> | |
<Route render={() => <h1>Page not found</h1>} /> | |
</Switch> | |
</div> | |
</Router> | |
); |
plz go to this link check my code tell me whats kind mistake my code and why show error me https://stackoverflow.com/q/58832778/10657996
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FYI, this is a really old example and probably should not be used for the current version of React Router. Please see their documentation.