import domdom, { Opts } from '@eirikb/domdom'; const { React, init } = domdom({}); // Important part const Button = ({ color }: { color: string }, { mounted, children }: Opts) => { const button = ; mounted(() => (button.style.color = color)); return button; }; const view = (