Skip to content
/ jsx Public

Converts JSX into a DOM with Tagged Template Literal.

Notifications You must be signed in to change notification settings

hyunjinee/jsx

Repository files navigation

@hyunjin/jsx

JSX is a JavaScript XML syntax extension that allows you to write HTML-like code in JavaScript. This package provides a tagged template literal that converts JSX into a InMemory DOM.

Installation

npm install @hyunjin/jsx

Example

import jsx from '@hyunjin/jsx';

const $dom = jsx`
  <button onClick=${() => console.log('hello world')}>
    <span>Click me!</span>
  </button>
`;

Reference