mirror of
https://github.com/wassname/talk.git
synced 2026-07-06 05:17:19 +08:00
9 lines
262 B
JavaScript
9 lines
262 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'));
|