Deskripsi: - ui detail project - ui create project - ui edit tambah tugas - ui edit tambah file - ui edit judul project - ui cancel project No Issues
15 lines
649 B
TypeScript
15 lines
649 B
TypeScript
import Styles from "@/constants/Styles";
|
|
import { Text, View } from "react-native";
|
|
import ItemSectionTanggalTugas from "./itemSectionTanggalTugas";
|
|
|
|
export default function SectionTanggalTugas() {
|
|
return (
|
|
<View style={[Styles.mb15, Styles.mt10]}>
|
|
<Text style={[Styles.textDefaultSemiBold, Styles.mv05]}>Tanggal & Tugas</Text>
|
|
<View style={[Styles.wrapPaper]}>
|
|
<ItemSectionTanggalTugas done={false} title="Pertama" dateStart="12-03-2023" dateEnd="15-03-2023" />
|
|
<ItemSectionTanggalTugas done={true} title="Kedua" dateStart="15-03-2023" dateEnd="20-03-2023" />
|
|
</View>
|
|
</View>
|
|
)
|
|
} |