Skip to content

Commit bae5203

Browse files
committed
fix(*): broken link to ./devtools/
1 parent 035d036 commit bae5203

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/Redux/Redux.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const Redux = ({ counter }) => {
99
return (
1010
<div>
1111
<p>I added <a href="http://redux.js.org/" title="About redux">redux</a> to manage state (a flux-like implementation if you will).</p>
12-
<p>If you clone the project and launch it in local, you'll have access to the redux devtools (hot reloading / state history ...).{process.env.DEVTOOLS === true ? '' : <span> In fact, <a href="./devtools.html" title="Test with devtools & sourcemaps" style={{fontWeight: 'bold'}}>you can test them right now here</a>!</span>}</p>
12+
<p>If you clone the project and launch it in local, you'll have access to the redux devtools (hot reloading / state history ...).{process.env.DEVTOOLS === true ? '' : <span> In fact, <a href="./devtools/" title="Test with devtools & sourcemaps" style={{fontWeight: 'bold'}}>you can test them right now here</a>!</span>}</p>
1313
<p>The button bellow is connected to a redux store:</p>
1414
<p><CounterButton/>{process.env.DEVTOOLS ? ' (ctrl+H to hide the debug panel).' : ''}</p>
1515
<p>This count is updated through the actions: <strong>{counter}</strong>.</p>

0 commit comments

Comments
 (0)