Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. const React = require('react')
  2. const ReactDOM = require('react-dom')
  3.  
  4. const App = () => {
  5. return (
  6. <div className='app-container'>
  7. <div className='home-info'>
  8. <h1 className='title'>sVideo</h1>
  9. <input className='search' type='text' placeholder='Search' />
  10. <button className='browse-all'> or Browse All</button>
  11. </div>
  12. </div>
  13. )
  14. }
  15.  
  16. ReactDOM.render(<App />, document.getElementById('app'))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement