import { atom } from "jotai"; export const historyAtoms = atom(false); export const activeHistoryIdAtom = atom(""); export const activeHistoryPrevIdAtom = atom(""); export const highlightChangesAtom = atom(true); export type DiffCounts = { added: number; deleted: number; total: number }; export const diffCountsAtom = atom(null);