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

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