//@flow import React from "react"; import { withContextPath } from "../urls"; type Props = { src: string, alt: string, className: any }; class Image extends React.Component { render() { const { src, alt, className } = this.props; return {alt}; } } export default Image;