UNPKG

sriracha-ui

Version:

A react style library build with styled-components, and material ui theme.

12 lines (8 loc) 229 B
import { useState } from "react"; export const useCabinet = () => { const [isCabinet, setIsCabinet] = useState(false); function toggleCabinet() { setIsCabinet(!isCabinet); } return { isCabinet, toggleCabinet }; };