3가지 원칙
진실은 하나의 소스로부터
console.log(store.getState());
{
visibilityFilter: 'SHOW_ALL',
todos: [{
text: 'Consider using Redux',
completed: true,
}, {
text: 'Keep all state in a single tree',
completed: false
}]
}상태는 읽기 전용이다
변화는 순수 함수로 작성되어야한다
Last updated