Skip to content

Instantly share code, notes, and snippets.

View neolefty's full-sized avatar

Beecher Baker neolefty

View GitHub Profile
const [
open, // current state: opened or closed?
toggle // HIDDEN DISPATCH
] = useReducer(
state => !state, // a reducer that, umm, ignores its action?
false // initial state: open = false
)