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