@mayd/ui
v4.10.3
Published
Mayd UI =======
Maintainers
Keywords
Readme
Mayd UI
Todo
- Handle rte types
- Test logo sliders and block social proof regarding image width/height
- Test auto slider performance
Usage
Install this library into your project:
npm i --save @mayd/uiDefining Components
When you define a component (e.g. a block) there are some constraints:
- put your component into a dedicated directory
- add an export for a
BlockConfigfor your block:
export const BlockTextImageConfig: BlockConfig = {
key: "block-text-image", // this key has to match the parent folder of your block
component: BlockTextImage,
};