// @flow import React from 'react'; type Props = { source: string, }; function ImageViewer(props: Props) { const { source } = props; return (
); } export default ImageViewer;