UNPKG

hyperviews

Version:

View template language based targeting hyperscript

11 lines 263 B
<!doctype html> <html> <body> <script src="https://unpkg.com/preact@^8"></script> <script type="module"> import Todos from './todos.js' const { h, Component } = window.preact preact.render(h(Todos), null, document.body) </script> </body> </html>