mirror of
				https://github.com/graphql-python/graphene.git
				synced 2025-10-31 16:07:27 +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;
 |