Created
February 24, 2015 17:42
-
-
Save sonthonaxrk/4c9f740df37a78992fa0 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
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