// @flow import * as React from 'react'; type Props = { text: string, lines: number, }; const TruncatedText = (props: Props) => ( {props.text} ); export default TruncatedText;