closes #75
Not JSX but HTML string, which mounts the component into the element with ID "here"
mount(HelloWorld, null, {
html: `
<div class="test-page">
this is a test
<div id="here"></div>
this is after component
</div>
`,
style: `
body {
background: pink
}
.test-page {
background: cyan
}
#here {
background: yellow
}
`,
})