mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
d7a5fda53c
* feat: feature flag upgrade * fix translations * refactor * fix * fix
8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
import { atomWithStorage } from "jotai/utils";
|
|
import type { Entitlements } from "./entitlement.types";
|
|
|
|
export const entitlementAtom = atomWithStorage<Entitlements | null>(
|
|
"entitlements",
|
|
null,
|
|
);
|