UNPKG

rynex

Version:

A minimalist TypeScript framework for building reactive web applications with no virtual DOM

14 lines (12 loc) 235 B
import { div, text } from 'rynex'; export default function App() { return div({ style: { padding: '2rem', textAlign: 'center', fontFamily: 'system-ui, sans-serif' } }, [ text('Hello, Rynex!') ]); }