Created
May 28, 2018 08:29
-
-
Save ChettaDarkkill/948df19a98cec6919af50ff2d810080a to your computer and use it in GitHub Desktop.
This file contains 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' | |
class InputData extends Component { | |
render() { | |
return( | |
<div className="panel-footer"> | |
<div className="input-group"> | |
<input id="btn-input" type="text" className="form-control input-sm" placeholder="Type your message here..." /> | |
<span className="input-group-btn"> | |
<button className="btn btn-primary btn-sm" id="btn-chat"> | |
Send</button> | |
</span> | |
</div> | |
</div> | |
) | |
} | |
} | |
export default InputData |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment