Skip to content

Instantly share code, notes, and snippets.

@sarpisik
sarpisik / useBoolean.js
Last active July 5, 2021 12:01
A custom react hook for a quick boolean state & toggle.
import { useReducer } from "react";
export default function useBoolean(initialBool = false) {
const [bool, toggleBool] = useReducer(reduceBool, initialBool);
return [bool, toggleBool];
}
function reduceBool(state) {
return !state;