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:
17
components/organisms/Title.tsx
Normal file
17
components/organisms/Title.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Text } from "react-native";
|
||||
import {
|
||||
title,
|
||||
courseId,
|
||||
} from "../../utils/constants";
|
||||
import styles from "../../styles/bioSketch.module";
|
||||
|
||||
const Title = () => {
|
||||
return (
|
||||
<>
|
||||
<Text style={styles.welcomeText}>{title}</Text>
|
||||
<Text style={styles.welcomeText}>{courseId}</Text>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Title;
|
Reference in New Issue
Block a user