16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
import { RichTextCustomElement } from '../../../../../../src/fields/config/types';
|
|
import Button from './Button';
|
|
import Element from './Element';
|
|
import plugin from './plugin';
|
|
|
|
const button: RichTextCustomElement = {
|
|
name: 'button',
|
|
Button,
|
|
Element,
|
|
plugins: [
|
|
plugin,
|
|
],
|
|
};
|
|
|
|
export default button;
|