Skip to content

Instantly share code, notes, and snippets.

View spacerumsfeld-code's full-sized avatar
🎯
Focusing

Nick Papadakis spacerumsfeld-code

🎯
Focusing
View GitHub Profile
@spacerumsfeld-code
spacerumsfeld-code / ReduxMini.js
Last active January 31, 2022 01:50
Redux Mini
/** Redux Mini
Implementing a Redux-like global store with useContext and useReducer. Potentially useful in small-scale applications
where Redux is overkill.
(source: Next.js examples)
*/
/** Create the store and reducer to dispatch actions to it*/
import { useReducer, useContext, createContext } from 'react'