jam-cloud/jam-ui/node_modules/react-router-dom
Nuwan 23d1ece36d fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
..
cjs fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
es fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
esm fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
modules fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
umd fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
BrowserRouter.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
HashRouter.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
LICENSE fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
Link.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
MemoryRouter.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
NavLink.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
Prompt.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
README.md fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
Redirect.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
Route.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
Router.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
StaticRouter.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
Switch.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
generatePath.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
index.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
matchPath.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
package.json fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
warnAboutDeprecatedCJSRequire.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30
withRouter.js fixing controller tests after upgradeing to rails5 2022-02-15 16:27:07 +05:30

README.md

react-router-dom

DOM bindings for React Router.

Installation

Using npm:

$ npm install --save react-router-dom

Then with a module bundler like webpack, use as you would anything else:

// using ES6 modules
import { BrowserRouter, Route, Link } from "react-router-dom";

// using CommonJS modules
const BrowserRouter = require("react-router-dom").BrowserRouter;
const Route = require("react-router-dom").Route;
const Link = require("react-router-dom").Link;

The UMD build is also available on unpkg:

<script src="https://unpkg.com/react-router-dom/umd/react-router-dom.min.js"></script>

You can find the library on window.ReactRouterDOM.

Issues

If you find a bug, please file an issue on our issue tracker on GitHub.

Credits

React Router is built and maintained by React Training.