1 2 3 4 5 6 7 8 9 10 11 12 13
import { ComponentChildren } from "preact" export function Edit(props: Edit.Props) { return <textarea autocomplete="off" spellcheck={false}> {props.children} </textarea> } namespace Edit { export type Props = { children?: ComponentChildren } }