mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
|
|
import { atom } from "jotai"
|
||
|
|
|
||
|
|
type BackgroundTaskProgress = {
|
||
|
|
label: string
|
||
|
|
}
|
||
|
|
|
||
|
|
export const backgroundTaskProgressAtom = atom<BackgroundTaskProgress | null>(
|
||
|
|
null,
|
||
|
|
)
|