mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
15 lines
267 B
TypeScript
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>
|
|
);
|
|
}
|