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:
21
components/organisms/Content.tsx
Normal file
21
components/organisms/Content.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import { View, Text } from "react-native";
|
||||
import {
|
||||
bioTitle,
|
||||
bioText,
|
||||
} from "../../utils/constants";
|
||||
import Image from "../molecules/Image";
|
||||
import styles from "../../styles/bioSketch.module";
|
||||
|
||||
const Content = () => {
|
||||
return (
|
||||
<>
|
||||
<View style={styles.bioSection}>
|
||||
<Text style={styles.bioTitle}>{bioTitle}</Text>
|
||||
<Text style={styles.bioText}>{bioText}</Text>
|
||||
<Image />
|
||||
</View>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Content;
|
Reference in New Issue
Block a user