Skip to content
This repository has been archived by the owner on Sep 12, 2021. It is now read-only.

BleuShan/ts-hyperscript-helpers

Repository files navigation

TS HyperScript-Helpers

Build Status

About

This is a generalized take on Cycle.js HyperScript-Helpers. It uses its logic but it allows for to use any HyperScript wrapper.

Example Usage

import {h} from 'your-favorite-hyperscript-wrapper'
import {patch} from 'your-favorite-vdom'
import {htmlhh} from 'ts-hyperscript-helpers'

const html = htmlhh(h)
const {head, body, h1, title} = html

const page = html([
  head([
    title('Hey!')
  ]),
  body([
    h1('Hello World!')
  ])
])

patch(document.querySelector('html'), page)