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