UNPKG

zent

Version:

一套前端设计语言和基于React的实现

22 lines (21 loc) 713 B
export * from './shapes/TextRow'; export * from './shapes/TextRowDashed'; export * from './shapes/Circle'; export * from './shapes/Rectangle'; export * from './presets/TextBlock'; export * from './presets/RichTextBlock'; import TextRow from './shapes/TextRow'; import TextRowDashed from './shapes/TextRowDashed'; import Circle from './shapes/Circle'; import Rectangle from './shapes/Rectangle'; import TextBlock from './presets/TextBlock'; import RichTextBlock from './presets/RichTextBlock'; export var Placeholder = { TextRow: TextRow, TextRowDashed: TextRowDashed, Circle: Circle, Rectangle: Rectangle, TextBlock: TextBlock, RichTextBlock: RichTextBlock, }; export default Placeholder;