From 3dafa9f9064eb892a551bd64d8d1131739525745 Mon Sep 17 00:00:00 2001 From: Yuki Takemoto Date: Tue, 24 Sep 2019 20:13:45 +0900 Subject: [PATCH] Fix broken link --- packages/redux-devtools/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/redux-devtools/README.md b/packages/redux-devtools/README.md index 6adf926d..f84c3c0d 100644 --- a/packages/redux-devtools/README.md +++ b/packages/redux-devtools/README.md @@ -31,7 +31,7 @@ A live-editing time travel environment for [Redux](https://github.com/reactjs/re ### Overview -Redux DevTools is a development time package that provides power-ups for your Redux development workflow. Be careful to strip its code in production (see [walkthrough](./docs/Walkthrough.md) for instructions)! To use Redux DevTools, you need to choose a “monitor”—a React component that will serve as a UI for the DevTools. Different tasks and workflows require different UIs, so Redux DevTools is built to be flexible in this regard. We recommend using [`LogMonitor`](https://github.com/gaearon/redux-devtools-log-monitor) for inspecting the state and time travel, and wrap it in a [`DockMonitor`](https://github.com/gaearon/redux-devtools-dock-monitor) to quickly move it across the screen. That said, when you’re comfortable rolling up your own setup, feel free to do this, and share it with us. +Redux DevTools is a development time package that provides power-ups for your Redux development workflow. Be careful to strip its code in production (see [walkthrough](https://github.com/reduxjs/redux-devtools/blob/master/docs/Walkthrough.md) for instructions)! To use Redux DevTools, you need to choose a “monitor”—a React component that will serve as a UI for the DevTools. Different tasks and workflows require different UIs, so Redux DevTools is built to be flexible in this regard. We recommend using [`LogMonitor`](https://github.com/gaearon/redux-devtools-log-monitor) for inspecting the state and time travel, and wrap it in a [`DockMonitor`](https://github.com/gaearon/redux-devtools-dock-monitor) to quickly move it across the screen. That said, when you’re comfortable rolling up your own setup, feel free to do this, and share it with us. If you came here looking for what do the “Reset”, “Revert”, “Sweep” or “Commit” buttons do, check out [the `LogMonitor` documentation](https://github.com/gaearon/redux-devtools-log-monitor/blob/master/README.md#features). @@ -41,7 +41,7 @@ If you don’t want to bother with installing Redux DevTools and integrating it ### Setup Instructions -Read the installation [walkthrough](./docs/Walkthrough.md) for integration instructions and usage examples (`` component, `DevTools.instrument()`, exclude from production builds, gotchas). +Read the installation [walkthrough](https://github.com/reduxjs/redux-devtools/blob/master/docs/Walkthrough.md) for integration instructions and usage examples (`` component, `DevTools.instrument()`, exclude from production builds, gotchas). ### Running Examples