summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters_list/store/state.js
blob: d590ea09e66eb48062ad0d00a0c12d48021f3c71 (plain)
1
2
3
4
5
6
7
8
9
export default (initialState = {}) => ({
  endpoint: initialState.endpoint,
  hasAncestorClusters: false,
  loading: true,
  clusters: [],
  clustersPerPage: 0,
  page: 1,
  totalCulsters: 0,
});