Name | Last modified | Size | Description | |
---|---|---|---|---|
Parent Directory | - | |||
cjs/ | 2023-06-08 14:13 | - | ||
es/ | 2023-06-08 14:13 | - | ||
esm/ | 2023-06-08 14:13 | - | ||
modules/ | 2023-06-08 14:13 | - | ||
umd/ | 2023-06-08 14:13 | - | ||
BrowserRouter.js | 1985-10-26 08:15 | 129 | ||
HashRouter.js | 1985-10-26 08:15 | 123 | ||
Link.js | 1985-10-26 08:15 | 111 | ||
MemoryRouter.js | 1985-10-26 08:15 | 127 | ||
NavLink.js | 1985-10-26 08:15 | 117 | ||
Prompt.js | 1985-10-26 08:15 | 115 | ||
Redirect.js | 1985-10-26 08:15 | 119 | ||
Route.js | 1985-10-26 08:15 | 113 | ||
Router.js | 1985-10-26 08:15 | 115 | ||
Switch.js | 1985-10-26 08:15 | 115 | ||
index.js | 1985-10-26 08:15 | 189 | ||
package.json | 2023-06-08 14:14 | 2.6K | ||
withRouter.js | 1985-10-26 08:15 | 123 | ||
LICENSE | 1985-10-26 08:15 | 1.1K | 0fb859dc fixed mobile overflwo options [كارل مبارك] | |
README.md | 1985-10-26 08:15 | 1.0K | 0fb859dc fixed mobile overflwo options [كارل مبارك] | |
StaticRouter.js | 1985-10-26 08:15 | 127 | 0fb859dc fixed mobile overflwo options [كارل مبارك] | |
generatePath.js | 1985-10-26 08:15 | 127 | 0fb859dc fixed mobile overflwo options [كارل مبارك] | |
matchPath.js | 1985-10-26 08:15 | 121 | 0fb859dc fixed mobile overflwo options [كارل مبارك] | |
warnAboutDeprecatedCJSRequire.js | 1985-10-26 08:15 | 1.0K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
# react-router-dom DOM bindings for [React Router](https://reactrouter.com). ## Installation Using [npm](https://www.npmjs.com/): $ npm install --save react-router-dom Then with a module bundler like [webpack](https://webpack.github.io/), use as you would anything else: ```js // 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](https://unpkg.com): ```html <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](https://github.com/remix-run/react-router/issues). ## Credits React Router is built and maintained by [Remix Software](https://remix.run).