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

11 lines
227 B
TypeScript

import { persistentAtom } from '@nanostores/persistent';
export const follows = persistentAtom('follows', [], {
encode(value) {
return JSON.stringify(value);
},
decode(value) {
return JSON.parse(value);
},
});