mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 12:16:58 +03:00
14 lines
329 B
JavaScript
14 lines
329 B
JavaScript
import React from 'react';
|
|
import DocumentTitle from 'react-document-title';
|
|
import PlaygroundWrapper from 'playground-wrapper';
|
|
|
|
class Playground extends React.Component {
|
|
render() {
|
|
return <DocumentTitle title="Playground - Graphene">
|
|
<PlaygroundWrapper />
|
|
</DocumentTitle>;
|
|
}
|
|
}
|
|
|
|
module.exports = Playground;
|