Skip to content

Instantly share code, notes, and snippets.

@sonthonaxrk
Created February 24, 2015 17:42
Show Gist options
  • Save sonthonaxrk/4c9f740df37a78992fa0 to your computer and use it in GitHub Desktop.
Save sonthonaxrk/4c9f740df37a78992fa0 to your computer and use it in GitHub Desktop.
var SearchBar = React.createClass({
render: function() {
return (
<div className="search-large-wrap">
<div className="search-large-textfield-wrap">
<input placeholder="Search For Existing Products" type="search" className="search-large-textfield" id="search-products"></input>
</div>
<div className="search-large-submit-wrap">
<button type="button" className="search-large-submit" id="add-products" >Continue</button>
</div>
</div>
);
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment