UNPKG

rynex

Version:

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

8 lines (6 loc) 142 B
import { render } from 'rynex'; import App from './App.js'; const root = document.getElementById('root'); if (root) { render(App, root); }