mirror of
https://github.com/penxio/penx.git
synced 2026-04-19 03:03:06 -04: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 }
|
|
}
|