Skip to content

Instantly share code, notes, and snippets.

@ahmedam55
Created July 11, 2017 16:57
Show Gist options
  • Save ahmedam55/2d938237b01d998b05d750e8dfcdd887 to your computer and use it in GitHub Desktop.
Save ahmedam55/2d938237b01d998b05d750e8dfcdd887 to your computer and use it in GitHub Desktop.
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