mirror of
https://github.com/penxio/penx.git
synced 2026-01-14 16:07:58 -05:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import { atom, useAtom } from 'jotai'
|
|
|
|
export const appLoading = atom<boolean>(true)
|
|
export function useAppLoading() {
|
|
const [loading, setLoading] = useAtom(appLoading)
|
|
return { loading, setLoading }
|
|
}
|