mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-20 07:41:22 +02:00
Refactor desktop app into separate client and proxy apps
This commit is contained in:
14
apps/yaak-client/components/graphql/graphqlAtoms.ts
Normal file
14
apps/yaak-client/components/graphql/graphqlAtoms.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { atomWithKVStorage } from '../../lib/atoms/atomWithKVStorage';
|
||||
|
||||
export const showGraphQLDocExplorerAtom = atomWithKVStorage<
|
||||
Record<
|
||||
string,
|
||||
| {
|
||||
type?: string;
|
||||
field?: string;
|
||||
parentType?: string;
|
||||
}
|
||||
| null
|
||||
| undefined
|
||||
>
|
||||
>('show_graphql_docs', {});
|
||||
Reference in New Issue
Block a user