build user interfaces using JSX and vDOM
npm install insertion !npm !npm bundle size
javascript
npm i insertion
`
Hello World
⚠ It is important that all jsx components have /_ @jsx insertionJsx _/ at startup so that the compiler does not compile to react js ⚠
`javascript
/ @jsx insertionJsx /
import {
insertionJsx,
createElement,
mount,
render,
Fragment,
} from "insertion";
function App({ message }) {
return (
{message}
);
}
const app = createElement( );
mount(render(app));
`
Running Hello World
`javascript
npm install
// working on!
npm run start:server
``