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:
24
components/BioSketch.tsx
Normal file
24
components/BioSketch.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
Reference in New Issue
Block a user