UNPKG

@grafana/ui

Version:
16 lines (13 loc) 323 B
import { useAsync } from 'react-use'; "use strict"; const useAsyncDependency = (importStatement) => { const state = useAsync(async () => { return await importStatement; }); return { ...state, dependency: state.value }; }; export { useAsyncDependency }; //# sourceMappingURL=useAsyncDependency.mjs.map