import * as React from 'react'; import { Attachment } from '@fluentui/react-northstar'; import { CloseIcon, MoreIcon } from '@fluentui/react-icons-northstar'; class AttachmentActionExampleShorthand extends React.Component { handleClick = action => () => alert(`'${action}' was clicked`); render() { return (
, onClick: this.handleClick('Remove'), title: 'Close' }} /> , onClick: this.handleClick('Show more'), title: 'Show more' }} />
); } } export default AttachmentActionExampleShorthand;