deskripsi:

Fix event: layout dan event deatil
Feature: Button dot, edit screen

# No Issue
This commit is contained in:
2025-07-21 15:23:18 +08:00
parent f9e96aa077
commit b844a8151d
6 changed files with 128 additions and 26 deletions

View File

@@ -0,0 +1,19 @@
import { ButtonCustom } from "@/components";
import { View } from "react-native";
export default function Event_ButtonStatusSection({
detail,
}: {
detail: string;
}) {
return (
<>
{detail && detail === "draft" && (
<View>
<ButtonCustom>Ajukan Review</ButtonCustom>
<ButtonCustom backgroundColor="red">Hapus</ButtonCustom>
</View>
)}
</>
);
}