UNPKG

zent

Version:

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

28 lines (25 loc) 439 B
--- order: 4 zh-CN: title: Loading 模式 content: 消息加载中... en-US: title: Loading Mode content: Loading message... --- ```jsx import { Alert, BlockLoading } from 'zent'; ReactDOM.render( <div className="zent-alert-example"> <Alert type="info" loading> {i18n.content} </Alert> <BlockLoading> <Alert type="info" loading progress={40}> {i18n.content} </Alert> </BlockLoading> </div>, mountNode ); ```