Created
March 4, 2016 21:24
-
-
Save ASteinheiser/5b5a6dfcb5f3cfe333e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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