4 lines
106 B
TypeScript
4 lines
106 B
TypeScript
|
|
import { atom } from 'jotai';
|
||
|
|
|
||
|
|
export const lastCompositionEndAtom = atom<number | undefined>(undefined);
|