Skip to content

Commit

Permalink
Merge pull request #672 from cchaonie/patch-1
Browse files Browse the repository at this point in the history
Update getting-started.mdx
  • Loading branch information
EskiMojo14 authored Dec 22, 2023
2 parents 9fcb71a + ac946a4 commit 1b13731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/introduction/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ For standalone usage, install the `reselect` package:

## Basic Usage

Reselect exports a `createSelector` API, which generates memoized selector functions. `createSelector` accepts one or more input selectors, which extract values from arguments, and a result function function that receives the extracted values and should return a derived value. If the generated output selector is called multiple times, the output will only be recalculated when the extracted values have changed.
Reselect exports a `createSelector` API, which generates memoized selector functions. `createSelector` accepts one or more input selectors, which extract values from arguments, and a result function that receives the extracted values and should return a derived value. If the generated output selector is called multiple times, the output will only be recalculated when the extracted values have changed.

You can play around with the following **example** in <Link to='https://codesandbox.io/s/reselect-example-g3k9gf?file=/src/index.js'>this CodeSandbox</Link>:

Expand Down

0 comments on commit 1b13731

Please sign in to comment.