Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
221 Bytes
import { useState } from "react";
function useToggle(initialValue) {
const [state, setState] = useState(initialValue);
const toggle = () => {
setState(!state);
};
return [state, toggle];
}
export { useToggle };