mirror of
https://github.com/CarGDev/Bio-Sketch-App.git
synced 2025-09-18 13:48:31 +00:00
25 lines
635 B
TypeScript
25 lines
635 B
TypeScript
import React from "react";
|
|
import { View, ScrollView } from "react-native";
|
|
import Title from "./organisms/Title";
|
|
import Content from "./organisms/Content";
|
|
import Footer from "./organisms/Footer";
|
|
import styles from "../styles/bioSketch.module";
|
|
|
|
// The code below will display my BioSketch @ UC, and it's amazing!!!!!
|
|
const BioSketch: React.FC = () => {
|
|
return (
|
|
<ScrollView
|
|
style={styles.container}
|
|
contentContainerStyle={styles.contentContainer}
|
|
>
|
|
<View style={styles.content}>
|
|
<Title />
|
|
<Content />
|
|
<Footer />
|
|
</View>
|
|
</ScrollView>
|
|
);
|
|
};
|
|
|
|
export default BioSketch;
|