import { View, Text, Button } from "react-native-ui-lib"; import React from "react"; import { Fontisto } from "@expo/vector-icons"; import { ProgressBar } from "react-native-ui-lib/src/components/progressBar"; import { useToDosContext } from "@/contexts/ToDosContext"; const ProgressCard = () => { const { maxPoints } = useToDosContext(); return ( You have earned XX points this week!{" "} 0 {maxPoints} ); }; export default ProgressCard;