import React from 'react'; interface Props { onClick: () => void; } export class StagedPlaceholderAttachment extends React.Component { public render() { const { onClick } = this.props; return (
); } }