mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 21:53:36 +01:00
14 lines
384 B
TypeScript
14 lines
384 B
TypeScript
import type { WorkspaceMeta } from '@yaakapp-internal/models';
|
|
import { atom, useAtomValue } from 'jotai';
|
|
import { jotaiStore } from '../lib/jotai';
|
|
|
|
export const workspaceMetaAtom = atom<WorkspaceMeta | null>(null);
|
|
|
|
export function useWorkspaceMeta() {
|
|
return useAtomValue(workspaceMetaAtom);
|
|
}
|
|
|
|
export function getWorkspaceMeta() {
|
|
return jotaiStore.get(workspaceMetaAtom);
|
|
}
|