FAQs on the exercise Implementing a React+Redux App
There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
You can also find further discussion and get answers to your questions over in Language Help.
Agree with a comment or answer? Like () to up-vote the contribution!
I keep coming back to this lesson exercise. I have been trying to complete the exercise yet the ui seems to be stuck at instruction 3. I have tried different browsers, chrome, firefox and edge. I have also looked at the solution and the difference I see with instruction 3 is that instead of declaring a variable for state = props.state then embedding the state variable in the
of the render the solution simply puts props.state.
Has anyone else encountered this issue? I have also submitted this to Code Academy Support.
I have completed the task and the buttons do as they are supposed to. Maybe there is something in my code I am missing.
import React from 'react';
import ReactDOM from 'react-dom';
import { createStore } from 'redux';
// REDUX CODE
///////////////////////////////////
const increment = () => {
return {type: 'increment'}
}
const decrement = () => {
return {type: 'decrement'}
}
const initialState = 0;
const counterReducer = (state = initialState, action) => {
switch (action.type) {
case 'increment':
return state + 1;
case 'decrement':
return state - 1;
default:
return state;
}
}
const store = createStore(counterReducer);
// REACT CODE
///////////////////////////////////
const render = () => {
ReactDOM.render(
<CounterApp
state={store.getState()}
/>,
document.getElementById('root')
)
}
render();
// Render once with the initial state.
// Subscribe render to changes to the store's state.
function CounterApp(props) {
const state = props.state;
const onIncrementButtonClicked = () => {
store.dispatch(increment());
}
const onDecrementButtonClicked = () => {
// Dispatch an 'decrement' action.
store.dispatch(decrement());
}
return ( d
<div id='counter-app'>
<h1> {state} </h1>
<button onClick={onIncrementButtonClicked}>+</button>
<button onClick={onDecrementButtonClicked}>-</button>
</div>
)
}
store.subscribe(render);