Created
July 11, 2017 16:57
Revisions
-
ahmedam55 revised this gist
Jul 11, 2017 . 1 changed file with 1 addition and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,11 +3,7 @@ import { h, render, Component } from 'preact'; class App extends Component { render(props, { data }) { return (<h1>Hello World!</h1>) } } -
ahmedam55 revised this gist
Jul 11, 2017 . No changes.There are no files selected for viewing
-
ahmedam55 created this gist
Jul 11, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ import { h, render, Component } from 'preact'; class App extends Component { render(props, { data }) { return ( <main> <h1>Hello World!</h1> </main> ) } } render(<App/>, document.body)