2023-10-02 23:01:03 +08:00

11 lines
246 B
TypeScript

import { atom } from 'jotai'
import { atomWithStorage } from 'jotai/utils'
export const token = atomWithStorage("token", "")
export const user = atomWithStorage("username", {
name: "",
uuid: ""
})
export const LayoutAlertErr = atom("")