mirror of
https://github.com/CarGDev/Bio-Sketch-App.git
synced 2025-09-18 13:48:31 +00:00
19 lines
393 B
TypeScript
19 lines
393 B
TypeScript
import { View, Image } from "react-native";
|
|
import styles from "../../styles/bioSketch.module";
|
|
|
|
const CustomImage = () => {
|
|
return (
|
|
<>
|
|
<View style={styles.header}>
|
|
<Image
|
|
source={require("../../assets/profile-picture.jpg")}
|
|
style={styles.profileImage}
|
|
resizeMode="cover"
|
|
/>
|
|
</View>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default CustomImage;
|