Files
lume/src/stores/currentUser.tsx
T

11 lines
187 B
TypeScript

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