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:
22
App.js
Normal file
22
App.js
Normal 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
|
||||
},
|
||||
});
|
Reference in New Issue
Block a user