5 lines
219 B
TypeScript
5 lines
219 B
TypeScript
import { createClient } from "tinacms/dist/client";
|
|
import { queries } from "./types";
|
|
export const client = createClient({ url: 'http://localhost:4001/graphql', token: 'undefined', queries });
|
|
export default client;
|
|
|