ticket_manager/node_modules/react-router-dom
2020-02-07 00:04:06 +01:00
..
cjs typescript client skeleton 2020-02-07 00:04:06 +01:00
es typescript client skeleton 2020-02-07 00:04:06 +01:00
esm typescript client skeleton 2020-02-07 00:04:06 +01:00
modules typescript client skeleton 2020-02-07 00:04:06 +01:00
umd typescript client skeleton 2020-02-07 00:04:06 +01:00
BrowserRouter.js typescript client skeleton 2020-02-07 00:04:06 +01:00
generatePath.js typescript client skeleton 2020-02-07 00:04:06 +01:00
HashRouter.js typescript client skeleton 2020-02-07 00:04:06 +01:00
index.js typescript client skeleton 2020-02-07 00:04:06 +01:00
LICENSE typescript client skeleton 2020-02-07 00:04:06 +01:00
Link.js typescript client skeleton 2020-02-07 00:04:06 +01:00
matchPath.js typescript client skeleton 2020-02-07 00:04:06 +01:00
MemoryRouter.js typescript client skeleton 2020-02-07 00:04:06 +01:00
NavLink.js typescript client skeleton 2020-02-07 00:04:06 +01:00
package.json typescript client skeleton 2020-02-07 00:04:06 +01:00
Prompt.js typescript client skeleton 2020-02-07 00:04:06 +01:00
README.md typescript client skeleton 2020-02-07 00:04:06 +01:00
Redirect.js typescript client skeleton 2020-02-07 00:04:06 +01:00
Route.js typescript client skeleton 2020-02-07 00:04:06 +01:00
Router.js typescript client skeleton 2020-02-07 00:04:06 +01:00
StaticRouter.js typescript client skeleton 2020-02-07 00:04:06 +01:00
Switch.js typescript client skeleton 2020-02-07 00:04:06 +01:00
warnAboutDeprecatedCJSRequire.js typescript client skeleton 2020-02-07 00:04:06 +01:00
withRouter.js typescript client skeleton 2020-02-07 00:04:06 +01: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.