about summary refs log tree commit diff stats
path: root/js/seed/src/state.js
blob: d1bad179ef0eeb8f3ea1eaf9c4bf8455960b7fe0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// state.js
// App state definition and helpers

export const initialState = {
  query: '',
  pokemon: null,
  loading: false,
  error: null
};

export function cloneState(state) {
  return JSON.parse(JSON.stringify(state));
}