Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

React Router Dom

//first install react router
npm install react-router-dom
//or
yarn add react-router-dom
///then write your code like in below in your App js or index.js
import {BrowserRouter , Routes , Route} from 'react-router-dom'
<BrowserRouter>
<Routes>
<Route exact path='/' element={<Home/>} />
<Route exact path='/login' element={<Login/>} />
<Route exact path='/signup' element={<Signup/>} />

</Routes>

</BrowserRouter>
//and now your down if you get error try to close your editor and open it again then you are good to go
Comment

react-router-dom

import { useLocation } from "react-router-dom";

function Locaions() {

  let location = useLocation();

  return (
    <>
    {location.pathname === "/Home" ?
    "Hi i am at the homepage"
    :
    "d-none"
    }
    </>
  );
}
Comment

react router dom

npm install react-router-dom
import {
  BrowserRouter as Router,
  Switch,
  Route,
  Link
} from "react-router-dom";
Comment

react router dom

import { BrowserRouter as Router, Switch, Route, Link} from "react-router-dom";
<Router>
    <Switch>
       <Route path="/" />
     </Switch>
</Router>
Comment

react-router-dom

//basic set-up for react routes 
import React from 'react';
import { BrowserRouter, Routes, Route } from "react-router-dom";

import { Register, Login, ChatApp } from "./Pages";

const app = () => {
  return (
      <BrowserRouter>
          <Routes>
              <Route path="/register" element={ <Register/>} />
              <Route path="/login" element={ <Login/>} />
              <Route path="/" element={ <ChatApp/>} />
//<Routes path="~url of path~" element={ <~react component/page~/>}/>
        </Routes>
      </BrowserRouter>
  )
}

export default app;
Comment

react router dom

npm i react-router-dom@6.0.2 //Updated React Router Dom
Comment

react router dom

import React from "react";
import {
  BrowserRouter as Router,
  Switch,
  Route,
  Link
} from "react-router-dom";

// This site has 3 pages, all of which are rendered
// dynamically in the browser (not server rendered).
//
// Although the page does not ever refresh, notice how
// React Router keeps the URL up to date as you navigate
// through the site. This preserves the browser history,
// making sure things like the back button and bookmarks
// work properly.

export default function BasicExample() {
  return (
    <Router>
      <div>
        <ul>
          <li>
            <Link to="/">Home</Link>
          </li>
          <li>
            <Link to="/about">About</Link>
          </li>
          <li>
            <Link to="/dashboard">Dashboard</Link>
          </li>
        </ul>

        <hr />

        {/*
          A <Switch> looks through all its children <Route>
          elements and renders the first one whose path
          matches the current URL. Use a <Switch> any time
          you have multiple routes, but you want only one
          of them to render at a time
        */}
        <Switch>
          <Route exact path="/">
            <Home />
          </Route>
          <Route path="/about">
            <About />
          </Route>
          <Route path="/dashboard">
            <Dashboard />
          </Route>
        </Switch>
      </div>
    </Router>
  );
}

// You can think of these components as "pages"
// in your app.

function Home() {
  return (
    <div>
      <h2>Home</h2>
    </div>
  );
}

function About() {
  return (
    <div>
      <h2>About</h2>
    </div>
  );
}

function Dashboard() {
  return (
    <div>
      <h2>Dashboard</h2>
    </div>
  );
}
Comment

react-router-dom

import * as React from "react";
import * as ReactDOM from "react-dom";
import { BrowserRouter } from "react-router-dom";
import "./index.css";
import App from "./App";
import * as serviceWorker from "./serviceWorker";

ReactDOM.render(
  <BrowserRouter>
    <App />
  </BrowserRouter>,
  document.getElementById("root")
);
Comment

react router dom

npm i react-router-dom@6.0.2
Comment

react router dom

import React, { Component } from 'react';
 
class App extends Component {
  constructor(props) {
    super(props);
    this.handleClick = this.handleClick.bind(this);
  }
 
  handleClick = (event) => {
      alert(event.type);
  }
 
  render() {
    return (
      <div>
        <div className="text-center">
          <button className="btn btn-secondary" onClick={this.handleClick}>
            Click Me
          </button>
        </div>
      </div>
    );
  }
}
 
export default App;
Comment

react router dom

{["/", "/home"].map((path) => (
          <Route
            exact
            path={path}
            element={
              <Wrapper>
                <Home />
              </Wrapper>
            }
          />
        ))}
Comment

react router dom

npx create-react-app demo-app
cd demo-app
Comment

PREVIOUS NEXT
Code Example
Php :: enable php error 
Php :: check if post request php 
Php :: php check folder exists and create 
Php :: php console log var_dump 
Php :: tinker color auto 
Php :: how remove from string in php 
Php :: error reporting in php 
Php :: php pretty print 
Php :: is frontpage wordpress 
Php :: laravel random string 
Php :: php replace by <br 
Php :: codeigniter order by 
Php :: check if user is on mobile php 
Php :: php storage link 
Php :: date now php 
Php :: how to validate an email field using php 
Php :: php preg_match email validation code 
Php :: laravel 6 link storage with public 
Php :: laravel firstorfail 
Php :: php regex only number 
Php :: grep only in php files 
Php :: php server referer 
Php :: popup in php 
Php :: wordpress get post thumbnail url 
Php :: wp_query count result 
Php :: if any comma in string in php 
Php :: php timezone asia dhaka 
Php :: laravel ide helper 
Php :: wordpress get archive title 
Php :: foreign key in laravel migration 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =