JavaScript
1
Вклад в тег
const store = createStore(
rootReducer,
composeWithDevTools(
applyMiddleware(
thunk.withExtraArgument(api) as ThunkMiddleware<
GlobalState,
AllReduxActions,
AxiosInstance
>,
),
),
);