react-email-editor
react-email-editor copied to clipboard
unable to disable tabs
I am unable to disable tabs (blocks and body ).
Here is my Code
<EmailEditor ref={emailEditorRef} onReady={onReady} tabs={{ content: { enabled: true, }, blocks: { enabled: false, }, body: { enabled: false }, }} tools={{ columns: { enabled: false } }} />
Any help Please ??
you have to pass the tabs object inside options:
<EmailEditor
options={{ tabs: { blocks: { enabled: false } } }}
...
/>