import useBoolean from './useBoolean' export default function useLoading(initValue = false) { const { bool: loading, setTrue: startLoading, setFalse: endLoading } = useBoolean(initValue) return { loading, startLoading, endLoading } }