// @flow import React from 'react'; type Props = { source: { fileType: string, filePath: string, downloadPath: string, }, }; class PdfViewer extends React.PureComponent { render() { const { source } = this.props; return ( ); } } export default PdfViewer;