mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-24 11:34:55 +01:00
6 lines
201 B
TypeScript
6 lines
201 B
TypeScript
import type { GraphQLSchema } from 'graphql';
|
|
import { atom } from 'jotai';
|
|
|
|
export const graphqlSchemaAtom = atom<GraphQLSchema | null>(null);
|
|
export const graphqlDocStateAtom = atom<boolean>(false);
|