Add placeholder for rich text editor (#9613)

* Add placeholder for rich text editor
This commit is contained in:
Florian Duros 2022-11-24 11:31:56 +01:00 committed by GitHub
parent 8b8d24c24c
commit 7c63d52500
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 109 additions and 19 deletions

View file

@ -43,6 +43,7 @@ const Content = forwardRef<HTMLElement, ContentProps>(
interface SendWysiwygComposerProps {
initialContent?: string;
isRichTextEnabled: boolean;
placeholder?: string;
disabled?: boolean;
e2eStatus?: E2EStatus;
onChange: (content: string) => void;