1import { useAsync } from 'react-use';
2
3// Allows simple dynamic imports in the components
4export const useAsyncDependency = (importStatement: Promise<any>) => {
5  const state = useAsync(async () => {
6    return await importStatement;
7  });
8
9  return {
10    ...state,
11    dependency: state.value,
12  };
13};
14