Guest User

Untitled

a guest
Feb 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. # Choose any one syntax
  2.  
  3. ```
  4. function Welcome(props) {
  5. return <h1>Hello, {props.name}</h1>;
  6. }
  7.  
  8. ReactDOM.render(
  9. // Welcome({name: 'henlo'}),
  10. // <div>{Welcome({name: 'henlo'})}</div>,
  11. // < Welcome name="henlo"/>,
  12. document.getElementById('root')
  13. );
  14. ```
Add Comment
Please, Sign In to add comment