mirror of
https://github.com/CarGDev/Bio-Sketch-App.git
synced 2025-09-18 13:48:31 +00:00
initial commit
This commit is contained in:
18
components/molecules/Image.tsx
Normal file
18
components/molecules/Image.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
Reference in New Issue
Block a user