import SimpleMdeReact from "../SimpleMdeReact"; import { useState } from "react"; import { Options } from "easymde"; import React from "react"; import {State} from "./UpdateUsingButtonWithAutofocus"; export const DynamicallyChangingOptions = () => { const [value, setValue] = useState(`Blur away to see initial event behavior`); const [options, setOptions] = useState({ maxHeight: "50px", }); return (

Dynamically changing options. Change max height

); };