Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save v-vashchenko/e9324fd0e83e6f39f7630defe6f6d77b to your computer and use it in GitHub Desktop.
Save v-vashchenko/e9324fd0e83e6f39f7630defe6f6d77b to your computer and use it in GitHub Desktop.
React immutable initialState
const getInitialModalState = () => ({
projects: {},
modalCreate: false,
modalAskForDelete: false,
currentId: 0,
currentDescription: '',
currentStart: defaultDate,
currentEnd: defaultDate,
currentDate: defaultDate,
currentTitle: 'Добавить переработку',
deleteTitle: 'Удалить переработку'
});
return this.setState({ ...getInitialModalState() });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment