15 lines
267 B
TypeScript

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