import Styles from "@/constants/Styles"; import { Pressable, View } from "react-native"; import Text from "./Text"; type Props = { category: 'purple' | 'orange' title: string user: string jamAwal: string jamAkhir: string onPress?: () => void } export default function EventItem({ category, title, user, jamAwal, jamAkhir, onPress }: Props) { return ( {jamAwal} - {jamAkhir} {title} Dibuat oleh : {user} ) }