(isLoading?: boolean)
| 1 | export default function useFullScreenLoader(isLoading?: boolean) { |
| 2 | const isFullScreenLoading = useState('isFullScreenLoading', () => true) |
| 3 | if (isLoading !== undefined) { |
| 4 | isFullScreenLoading.value = isLoading |
| 5 | } |
| 6 | return isFullScreenLoading |
| 7 | } |
nothing calls this directly
no outgoing calls
no test coverage detected