recoil#AtomOptions TypeScript Examples
The following examples show how to use
recoil#AtomOptions.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: api.ts From Chromogen with MIT License | 6 votes |
/* ----- ATOM ----- */
export function atom<T>(config: AtomOptions<T>): RecoilState<T> {
const { transactions, atoms } = ledger;
const newAtom = recoilAtom(config);
// Can't use key-only b/c atoms must be passed to getLoadable during transaction iteration
if (transactions.length === 0) atoms.push(newAtom);
return newAtom;
}