import { Component, VNode } from "preact"; import { MdOutlinedSelect, MdSelectOption } from "../server/dmodule.ts"; import type { _MdOutlinedSelect } from "../server/md3.ts"; type OProps = { value: string; headline?: string; selected?: boolean; disabled?: boolean; }; class Md3Option extends Component { render() { if (!MdSelectOption.value) return null; const Option = MdSelectOption.value; return (