addons/isl/src/third-party/jotai-devtools/utils/useGotoAtomsSnapshot.tsblame
View source
b69ab311import { useStore } from 'jotai/react';
b69ab312import { useCallback } from 'react';
b69ab313import type { AtomsSnapshot, Options } from '../types';
b69ab314
b69ab315export function useGotoAtomsSnapshot(options?: Options) {
b69ab316 const store = useStore(options);
b69ab317 return useCallback(
b69ab318 (snapshot: AtomsSnapshot) => {
b69ab319 if (store.dev_restore_atoms) {
b69ab3110 store.dev_restore_atoms(snapshot.values);
b69ab3111 }
b69ab3112 },
b69ab3113 [store],
b69ab3114 );
b69ab3115}