@cmpsr/markdown-editor
v2.0.33
Published
[](https://github.com/cmpsr/composer/actions/workflows/test.yml) [ => void;
placeholder?: string;
};
export const MyEditor: FC<Props> = ({ value, onChange, placeholder }) => (
<ComposerProvider>
<MarkdownEditor
initialValue={value}
onChange={onChange}
placeholder={placeholder}
height="350px"
width="100%"
/>
</ComposerProvider>
);Initial value
This component is not a controlled component, the initialValue will only be set once to the first non falsy value provided, once a value is set subsequent values sent to the component will be ignored. For example in the following code the value set inside the setTimeout will be discarded by the MarkdownEditor and # First value will be used.
export const WithInitialValue = () => {
const [value, setValue] = useState("# First value");
useEffect(() => {
setTimeout(() => {
setValue("# Second value");
}, 1000);
}, []);
return <MarkdownEditor initialValue={value} />;
};Releasing your changes
Before creating the pull request you have to generate a changeset for your components, follow the instructions in here.
