Welcome to mirror list, hosted at ThFree Co, Russian Federation.

state.js « store « clusters_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed032ed84359f71a64fc81ce851484ef8d702180 (plain)
1
2
3
4
5
export default (initialState = {}) => ({
  endpoint: initialState.endpoint,
  loading: false, // TODO - set this to true once integrated with BE
  clusters: [],
});