import React, {useReducer} from "react"; import GridComponent from "./GridComponent"; import {Context, initialState, reducer} from "./store"; export default function SimpleReduxHookExample() { const [store, dispatch] = useReducer(reducer, initialState); return (

Simple Example using Hooks (with useContext and useReducer)

) }