Files
lume/src/stores/currentUser.tsx
2023-02-21 14:58:47 +07:00

11 lines
187 B
TypeScript

import { persistentAtom } from '@nanostores/persistent';
export const currentUser = persistentAtom(
'currentUser',
{},
{
encode: JSON.stringify,
decode: JSON.parse,
}
);