import * as React from 'react'; import { Col, Button, Row, notification } from '@btri-ui/base'; export default () => { const showMsg = placement => { notification.info({ message: '用于表示普通操作信息提示', description: '用于表示普通操作信息提示具体提示内容。', placement, onCancle: () => { console.log('cancle'); }, onOk: () => { alert('ok'); }, }); }; const placementList = [ { placement: 'topLeft' }, { placement: 'topRight' }, { placement: 'bottomLeft' }, { placement: 'bottomRight' }, ]; return ( <> {placementList.map(item => { return ( ); })} ); };