import * as React from "react"; import { View, Image } from "react-native"; import { NameLabel, ShowLabel, StyledShowLabel } from "./styled"; type Props = { name: string; imageUrl: string; }; function UserPicture({ imageUrl, name }: Props) { return ( {name} ); } export default UserPicture;