spaceout/site/frontend/node_modules/react-router-dom
2020-12-12 14:43:35 -05:00
..
cjs init organization 2020-12-12 14:43:35 -05:00
es init organization 2020-12-12 14:43:35 -05:00
esm init organization 2020-12-12 14:43:35 -05:00
modules init organization 2020-12-12 14:43:35 -05:00
umd init organization 2020-12-12 14:43:35 -05:00
BrowserRouter.js init organization 2020-12-12 14:43:35 -05:00
generatePath.js init organization 2020-12-12 14:43:35 -05:00
HashRouter.js init organization 2020-12-12 14:43:35 -05:00
index.js init organization 2020-12-12 14:43:35 -05:00
LICENSE init organization 2020-12-12 14:43:35 -05:00
Link.js init organization 2020-12-12 14:43:35 -05:00
matchPath.js init organization 2020-12-12 14:43:35 -05:00
MemoryRouter.js init organization 2020-12-12 14:43:35 -05:00
NavLink.js init organization 2020-12-12 14:43:35 -05:00
package.json init organization 2020-12-12 14:43:35 -05:00
Prompt.js init organization 2020-12-12 14:43:35 -05:00
README.md init organization 2020-12-12 14:43:35 -05:00
Redirect.js init organization 2020-12-12 14:43:35 -05:00
Route.js init organization 2020-12-12 14:43:35 -05:00
Router.js init organization 2020-12-12 14:43:35 -05:00
StaticRouter.js init organization 2020-12-12 14:43:35 -05:00
Switch.js init organization 2020-12-12 14:43:35 -05:00
warnAboutDeprecatedCJSRequire.js init organization 2020-12-12 14:43:35 -05:00
withRouter.js init organization 2020-12-12 14:43:35 -05:00

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.