Files
talk/client/coral-docs/src/index.js
T
2018-01-11 20:00:34 -07:00

9 lines
266 B
JavaScript

import React from 'react';
import { render } from 'react-dom';
import { GraphQLDocs } from 'graphql-docs';
import fetcher from './services/fetcher';
// Render the application into the DOM
render(<GraphQLDocs fetcher={fetcher} />, document.querySelector('#root'));