import Styles from "@/constants/Styles"; import { MaterialCommunityIcons } from "@expo/vector-icons"; import { Pressable, View } from "react-native"; import Text from "./Text"; type Props = { done?: boolean title: string dateStart: string dateEnd: string onPress?: () => void } export default function ItemSectionTanggalTugas({ done, title, dateStart, dateEnd, onPress }: Props) { return ( { done != undefined ? done ? <> Selesai : <> Belum Selesai : <> } {title} Tanggal Mulai {dateStart} Tanggal Berakhir {dateEnd} ) }