Created
July 11, 2017 16:57
-
-
Save ahmedam55/2d938237b01d998b05d750e8dfcdd887 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { h, render, Component } from 'preact'; | |
class App extends Component { | |
render(props, { data }) { | |
return (<h1>Hello World!</h1>) | |
} | |
} | |
render(<App/>, document.body) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment