1 | /**
|
2 | * These APIs are still unstable.
|
3 | * See: https://github.com/pmndrs/jotai/discussions/1514
|
4 | */
|
5 | export { atom } from './vanilla/atom';
|
6 | export type { Atom, WritableAtom, PrimitiveAtom } from './vanilla/atom';
|
7 | export { createStore, getDefaultStore } from './vanilla/store';
|
8 | export type { Getter, Setter, ExtractAtomValue, ExtractAtomArgs, ExtractAtomResult, SetStateAction, } from './vanilla/typeUtils';
|