Created
September 6, 2017 00:11
-
-
Save rbiggs/37c443ee54a492a1f3ff9d8675154d7d to your computer and use it in GitHub Desktop.
Hello World same from default new project
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, Component} from 'composi' | |
const title = new Component({ | |
root: 'header', | |
state: 'World', | |
render: (message) => ( | |
<h1>Hello, {message}!</h1> | |
), | |
styles: { | |
padding: 20, | |
backgroundColor: '#333', | |
h1: { | |
color: '#fff', | |
margin: 0 | |
} | |
} | |
}) | |
title.update() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment