import React from 'react'; import { Button, Popconfirm, message, Row, Col } from '@btri-ui/base'; export default () => { const cancel = (e: React.MouseEvent) => { message.error('Click on No'); }; const confirm = (e: React.MouseEvent) => { message.success('Click on confirm'); }; const typeList = [ 'top', 'left', 'right', 'bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight', 'leftTop', 'leftBottom', 'rightTop', 'rightBottom', ]; return ( {typeList.map(item => { return ( ); })} ); };