AO
Size: a a a
AO
AO

AO
AO
V

DS
DS
AO
Maybe<Either<E, A>>yv
V
export const appDomain = createDomain('appDomain');
export const createStorageStore =
typeof localStorage !== 'undefined'
? withStorage(appDomain.createStore, localStorage)
: null;export const $userInfoStore =
createStorageStore !== null
? createStorageStore<UserInfo | null>(null, {
key: 'user_info',
})
: appDomain.createStore<UserInfo | null>(null);
AO
Maybe<Either<E, A>>DS

V
export const appDomain = createDomain('appDomain');
export const createStorageStore =
typeof localStorage !== 'undefined'
? withStorage(appDomain.createStore, localStorage)
: null;export const $userInfoStore =
createStorageStore !== null
? createStorageStore<UserInfo | null>(null, {
key: 'user_info',
})
: appDomain.createStore<UserInfo | null>(null);
AO
V
V
yv
export const appDomain = createDomain('appDomain');
export const createStorageStore =
typeof localStorage !== 'undefined'
? withStorage(appDomain.createStore, localStorage)
: null;export const $userInfoStore =
createStorageStore !== null
? createStorageStore<UserInfo | null>(null, {
key: 'user_info',
})
: appDomain.createStore<UserInfo | null>(null);
V