Deskripsi: - ui edit divisi - ui informasi divisi - ui laporan per divisi - ui create divisi No Issues
33 lines
1.3 KiB
TypeScript
33 lines
1.3 KiB
TypeScript
import ButtonBackHeader from "@/components/buttonBackHeader"
|
|
import ReportChartDocument from "@/components/division/reportChartDocument"
|
|
import ReportChartEvent from "@/components/division/reportChartEvent"
|
|
import ReportChartProgress from "@/components/division/reportChartProgress"
|
|
import { InputForm } from "@/components/inputForm"
|
|
import Styles from "@/constants/Styles"
|
|
import { router, Stack, useLocalSearchParams } from "expo-router"
|
|
import { SafeAreaView, ScrollView, View } from "react-native"
|
|
|
|
export default function ReportDivision() {
|
|
const { id } = useLocalSearchParams()
|
|
|
|
return (
|
|
<SafeAreaView>
|
|
<Stack.Screen
|
|
options={{
|
|
headerLeft: () => <ButtonBackHeader onPress={() => { router.back() }} />,
|
|
headerTitle: 'Laporan Divisi',
|
|
headerTitleAlign: 'center',
|
|
}}
|
|
/>
|
|
<ScrollView>
|
|
<View style={[Styles.p15, Styles.mb100]}>
|
|
<InputForm bg="white" label="Tanggal Awal" type="default" placeholder="Pilih Tanggal Awal" required />
|
|
<InputForm bg="white" label="Tanggal Akhir" type="default" placeholder="Pilih Tanggal Akhir" required />
|
|
<ReportChartProgress />
|
|
<ReportChartDocument />
|
|
<ReportChartEvent />
|
|
</View>
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
)
|
|
} |