mirror of
https://github.com/CarGDev/Bio-Sketch-App.git
synced 2025-09-18 13:48:31 +00:00
23 lines
435 B
JavaScript
23 lines
435 B
JavaScript
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
|
|
},
|
|
});
|