11 lines
246 B
TypeScript
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("")
|