5 lines
135 B
TypeScript
5 lines
135 B
TypeScript
import { atom } from 'jotai';
|
|
|
|
// models expand keys: create, update , delete,
|
|
export const modelsExpandKeysAtom = atom<string[]>([]);
|