import { NConnectProps } from 'nsn-model-type';

export type Props <T> = {
  loading?: boolean;
  data?: T;
}
  & Pick<NConnectProps, 'dispatch'>