Skip to content

Instantly share code, notes, and snippets.

@cheskoxd
Created March 8, 2024 23:50
Show Gist options
  • Save cheskoxd/c707f1731d0ee56ec50134fe93f367cf to your computer and use it in GitHub Desktop.
Save cheskoxd/c707f1731d0ee56ec50134fe93f367cf to your computer and use it in GitHub Desktop.
import { useState } from "react";
export const useToggle = (initialValue: boolean = false) => {
const [value, setValue] = useState<boolean>(initialValue);
const toggle = () => {
setValue((prevValue) => !prevValue);
};
return [value, toggle] as const;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment