In this lesson, we're going to learn how to create Recoil selectors that accept arguments. These are made possible using the selectorFamily
utility function.
We'll start with an existing application that uses a regular selector
to display a sorted array of Todo items, and then we'll refactor it so that we're able to supply the sort type (ascending
or descending
) in the React component itself.
For more information on selectorFamily
, have a look at the official RecoilJS docs: https://recoiljs.org/docs/api-reference/utils/selectorFamily