Files
drive/apps/drive-web/src/dashboard/state.ts
2025-10-18 14:02:20 +00:00

10 lines
168 B
TypeScript

import { atom } from "jotai"
type BackgroundTaskProgress = {
label: string
}
export const backgroundTaskProgressAtom = atom<BackgroundTaskProgress | null>(
null,
)