Skip to content

Instantly share code, notes, and snippets.

@krsjoseph
Created May 22, 2017 20:07
Show Gist options
  • Save krsjoseph/53e57aa5dd85e7379c1fb4d26d08c34c to your computer and use it in GitHub Desktop.
Save krsjoseph/53e57aa5dd85e7379c1fb4d26d08c34c to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import TextField from 'material-ui/TextField';
class Dummy extends Component {
render() {
return (
<div>
<TextField
hintText="Name"
name="requestName"
value={this.state.requestName}
onChange={this.handleInputChange}
floatingLabelText="Request Name"
fullWidth
/>
</div>
);
}
}
export default Dummy;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment