import { useState } from "react"; import { State } from "./UpdateUsingButtonWithAutofocus"; import SimpleMdeReact from "../SimpleMdeReact"; import React from "react"; export const CleanupByButton = () => { const [value, setValue] = useState( "You can clean the input using button above." ); const onChange = (value: string) => setValue(value); const handleCleanup = () => { setValue(``); }; return (

Cleanup by button

); };