script import { Component, h } from 'acorn'; class MyComponent extends Component { render() { return ( <div> <h1>Hello, Acorn!</h1> <p>This is my first Acorn component.</p> </div> ); } } const app = new MyComponent(); app.mount('#root');