import { PartnerState } from './PartnerState';

export default function (): PartnerState {
  return {
    token: null,
    data: null,
    loading: false,
    notifications: {
      data: [],
      loading: false,
    },
    stats: [],
    loadingStats: false,
    loadingItems: false,
  };
}
