From 89f1b676ac7aeaae2c2e54435195173a3fc07629 Mon Sep 17 00:00:00 2001 From: Dmitrii Pikulin Date: Tue, 22 Feb 2022 11:52:29 +0300 Subject: [PATCH] Add Attachment settings story --- .../components/Toolbox/Toolbox.stories.tsx | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/packages/slate-editor/src/components/Toolbox/Toolbox.stories.tsx b/packages/slate-editor/src/components/Toolbox/Toolbox.stories.tsx index 5dfbdb87d..2847d5ad2 100644 --- a/packages/slate-editor/src/components/Toolbox/Toolbox.stories.tsx +++ b/packages/slate-editor/src/components/Toolbox/Toolbox.stories.tsx @@ -269,3 +269,35 @@ export function GallerySettings() { ); } + +export function AttachmentSettings() { + const [text, setText] = React.useState(''); + + return ( +
+ + Attachment settings + + + + Title + + + + + + + + + + + + + +
+ ); +}