initial commit

This commit is contained in:
Carlos Gutierrez
2025-09-02 23:12:22 -04:00
commit 3029582bb4
19 changed files with 14951 additions and 0 deletions

View 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;