mirror of
https://github.com/CarGDev/Bio-Sketch-App.git
synced 2025-09-18 13:48:31 +00:00
16 lines
348 B
TypeScript
16 lines
348 B
TypeScript
import { View, Text } from "react-native";
|
|
import { currentCourse } from "../../utils/constants";
|
|
import styles from "../../styles/bioSketch.module";
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<>
|
|
<View style={styles.courseInfo}>
|
|
<Text style={styles.courseText}>{currentCourse}</Text>
|
|
</View>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|