<div id="root">
</div>
const CountContext = React.createContext();

const reducer = (state, action) => {
  switch(action.type) {
    case 'increment':
      return {
        count: state.count + 1
      };
    case 'decrement':
      return {
        count: state.count - 1
      };
    default:
      return {
        count: 0
      }
  }
}

const initialState = {
  count: 0,
};

const Child = () => {
  const [state, dispatch] = React.useContext(CountContext);
  return (
    <div>
      Child Count: {state.count}
      <br />
      <button type="button" className="bg-blue-400 p-4 text-white hover:bg-blue-700" onClick={() => dispatch({ type: "decrement" })}>Decrement</button><button type="button" className="bg-blue-400 p-4 text-white hover:bg-blue-700" onClick={() => dispatch({ type: "increment" })}>Increment</button>
    </div>
  );
}

const App = () => {
  const countReducer = React.useReducer(reducer, initialState);

  return (
    <div>
      App Count: {countReducer[0].count}
      <br />
      <CountContext.Provider value={countReducer}>
        <Child />
      </CountContext.Provider>
    </div>
  );
}

const root = ReactDOM.createRoot(document.querySelector('#root'));
root.render(<App />);
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdn.tailwindcss.com
  2. https://unpkg.com/react@18/umd/react.development.js
  3. https://unpkg.com/react-dom@18/umd/react-dom.development.js
  4. https://cdnjs.cloudflare.com/ajax/libs/axios/0.27.2/axios.min.js