import { ProductosState } from "./ProductosState";

export default function (): ProductosState {
  return {
    data: null,
    current: null,
    loading: false,
    loadingStats: false,
    list: [],
    stats: [],
    queryParams: null,
    count: 0,
    currentTab: ''
  };
}

