Skip to content

Instantly share code, notes, and snippets.

@allizad
Created February 21, 2017 17:29
Show Gist options
  • Save allizad/6c4e694df8a8cd20671563ae3139b830 to your computer and use it in GitHub Desktop.
Save allizad/6c4e694df8a8cd20671563ae3139b830 to your computer and use it in GitHub Desktop.
// 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