redux-persist와 redux-toolkit을 설정하는 방법 redux-persist는 다음과 같은 기존 react-redux 설정으로 설정했습니다. onst persistConfig = { key: 'root', storage, whitelist: ['todos'], }; const persistedReducer = persistReducer(persistConfig, reducer); const store = createStore( persistedReducer, window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__() ); const persistor = persistStore(store); // wrapper ..