Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // 1. Import dependencies.
  2. import React, {Component} from 'react';
  3.  
  4. // 2. Set up example react component.
  5. class Search extends Component {
  6. render(){
  7. return (
  8. <div className="_Search">
  9. <h3>Search Component!</h3>
  10. </div>
  11. )
  12. }
  13. }
  14. export default Search;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement