import { FormControl } from "./form-control.js"; export class FormParagraph extends FormControl { role = "decoration"; constructor(public text: string) { super(); } render() { return `

${this.text}

`; } }