redux.js.org/api/createstore createStore | Redux createStore(reducer, [preloadedState], [enhancer]) redux.js.org Creates a Redux store that holds the complete state tree of your app. There should only be a single store in your app. 앱의 전체 state tree를 보유하는 Redux store를 만듭니다. 앱에서는 하나의 store만 있어야 합니다. Arguments# reducer (Function): A reducing function that returns the next state tree, given the curr..