Skip to content

Instantly share code, notes, and snippets.

@rbiggs
Created September 6, 2017 00:11
Show Gist options
  • Save rbiggs/37c443ee54a492a1f3ff9d8675154d7d to your computer and use it in GitHub Desktop.
Save rbiggs/37c443ee54a492a1f3ff9d8675154d7d to your computer and use it in GitHub Desktop.
Hello World same from default new project
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