Skip to content

Instantly share code, notes, and snippets.

@ASteinheiser
Created March 4, 2016 21:24
Show Gist options
  • Save ASteinheiser/5b5a6dfcb5f3cfe333e3 to your computer and use it in GitHub Desktop.
Save ASteinheiser/5b5a6dfcb5f3cfe333e3 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react'
export default class NodeSchemaInput extends Component {
handleChange = () => {
}
render() {
return <div>
<h1>Node Schema</h1>
<textarea
rows='10'
cols='100'
name='nodeSchema'
onChange={this.props.handleChange}/>
</div>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment