// @flow import * as React from "react"; type Props = {| +avatarURL: string, |}; function ProfileImage({ avatarURL }: Props): React.Node { return Profile; } export default ProfileImage;