Files
drive/apps/drive-web/src/dashboard/state.ts

10 lines
168 B
TypeScript
Raw Normal View History

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