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

Latest commit

 

History

History
33 lines (23 loc) · 775 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 775 Bytes

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)