From bbf887925548c26aee5d6ee91d62b3da15ecf09c Mon Sep 17 00:00:00 2001 From: Nick Girardo Date: Wed, 24 Jan 2024 00:04:28 -0500 Subject: [PATCH] Add missing reducer field to ConfigureStoreOptions docs --- docs/api/configureStore.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/api/configureStore.mdx b/docs/api/configureStore.mdx index 08aa0f089c..c6364c9833 100644 --- a/docs/api/configureStore.mdx +++ b/docs/api/configureStore.mdx @@ -46,6 +46,10 @@ interface ConfigureStoreOptions< P = S > { /** + * A single reducer function that will be used as the root reducer, or an + * object of slice reducers that will be passed to `combineReducers()`. + */ + reducer: Reducer | ReducersMapObject /** * An array of Redux middleware to install. If not supplied, defaults to