/** * @flow * @file Show Original button component used by Comment Text component */ import * as React from 'react'; import { FormattedMessage } from 'react-intl'; import PlainButton from '../../../../../components/plain-button'; import messages from './messages'; type Props = { handleShowOriginal: Function, }; const ShowOriginalButton = ({ handleShowOriginal }: Props): React.Node => ( ); export default ShowOriginalButton;