UNPKG

@aliretail/react-materials-components

Version:
40 lines (35 loc) 724 B
--- title: Message-Simple order: 1 --- 演示信息提示组件用法,按照交互图,宽度默认400px,外观默认'toast' ```jsx import React, { Component } from 'react'; import ReactDOM from 'react-dom'; import { Message } from '@aliretail/react-materials-components'; class App extends Component { render() { const data = { text: '测试文案', title: '测试标题', shape: 'toast', type: 'success' } const data2 = { text: '', title: '测试标题', shape: 'toast', type: 'error' } return ( <div> <Message {...data} /> <Message {...data2} /> </div> ); } } ReactDOM.render(( <App /> ), mountNode); ```