Deskripsi: - ui list acara - ui tambah acara - ui history acara - ui detail acara - ui edit acara No Issues
26 lines
865 B
TypeScript
26 lines
865 B
TypeScript
import ButtonBackHeader from "@/components/buttonBackHeader";
|
|
import ItemHistoryEvent from "@/components/calendar/itemHistoryEvent";
|
|
import InputSearch from "@/components/inputSearch";
|
|
import Styles from "@/constants/Styles";
|
|
import { router, Stack } from "expo-router";
|
|
import { SafeAreaView, ScrollView, Text, View } from "react-native";
|
|
|
|
export default function CalendarHistory(){
|
|
return(
|
|
<SafeAreaView>
|
|
<Stack.Screen
|
|
options={{
|
|
headerLeft: () => <ButtonBackHeader onPress={() => { router.back() }} />,
|
|
headerTitle: 'Riwayat Acara',
|
|
headerTitleAlign: 'center',
|
|
}}
|
|
/>
|
|
<ScrollView>
|
|
<View style={[Styles.p15]}>
|
|
<InputSearch />
|
|
<ItemHistoryEvent/>
|
|
</View>
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
)
|
|
} |