Guest User

Untitled

a guest
May 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import React, { Component } from "react"
  2. import ReactDOM from "react-dom"
  3.  
  4. class App extends Component {
  5. render() {
  6. return (
  7. <div>
  8. <h1>Hello World!</h1>
  9. </div>
  10. )
  11. }
  12. }
  13.  
  14. ReactDOM.render(<App />, document.getElementById('root'));
Add Comment
Please, Sign In to add comment