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

22
App.js Normal file
View File

@@ -0,0 +1,22 @@
import { StyleSheet, SafeAreaView } from 'react-native';
import BioSketch from './components/BioSketch';
import {
APP_BACKGROUND
} from "./utils/constants";
export default function App() {
return (
<SafeAreaView style={styles.container}>
<BioSketch />
</SafeAreaView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: APP_BACKGROUND, // UC red color as requested
},
});