Created
February 21, 2017 17:29
-
-
Save allizad/6c4e694df8a8cd20671563ae3139b830 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
// 1. Import dependencies. | |
import React, {Component} from 'react'; | |
// 2. Set up example react component. | |
class Search extends Component { | |
render(){ | |
return ( | |
<div className="_Search"> | |
<h3>Search Component!</h3> | |
</div> | |
) | |
} | |
} | |
export default Search; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment