summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/static_site_editor/store/state.js
blob: e457fde591aa4d87a5eafa8ca22aba53b76576c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const createState = (initialState = {}) => ({
  username: null,
  projectId: null,
  sourcePath: null,

  isLoadingContent: false,
  isSavingChanges: false,

  originalContent: '',
  content: '',
  title: '',

  ...initialState,
});

export default createState;