mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-19 16:21:25 +01:00
6 lines
207 B
TypeScript
6 lines
207 B
TypeScript
import { atom } from "jotai";
|
|
import type { GraphQLSchema } from "graphql/index";
|
|
|
|
export const graphqlSchemaAtom = atom<GraphQLSchema | null>(null);
|
|
export const graphqlDocStateAtom = atom<boolean>(false);
|