UNPKG

209 BJavaScriptView Raw
1import {h, Component} from 'composi'
2
3export const title = new Component({
4 container: 'header',
5 render: (message) => {
6 return (
7 <nav>
8 <h1>Hello, {message}!</h1>
9 </nav>
10 )
11 }
12})