Skip to content
This repository was archived by the owner on Jun 18, 2023. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

@hyperlight/jsx

npm (scoped) npm

JSX support for Hyperapp.

Install

pnpm i @hyperlight/jsx

Setup

Add this field to tsconfig.json (or jsonconfig.json):

{
  "jsx": "preserve"
}

Usage

import { jsx } from '@hyperlight/jsx'

export const view = (state) => <h1>{state}</h1>