import * as React from "react"; export function TextEditor({ value, updateFormValue }: { value: string, updateFormValue: (string) => void }) { console.log(value); console.log(updateFormValue); return (
); }