mirror of
https://github.com/wassname/talk.git
synced 2026-07-20 12:40:47 +08:00
9 lines
271 B
JavaScript
9 lines
271 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import {GraphQLDocs} from 'graphql-docs';
|
|
|
|
import fetcher from './services/fetcher';
|
|
|
|
// Render the application into the DOM
|
|
ReactDOM.render(<GraphQLDocs fetcher={fetcher} />, document.querySelector('#root'));
|