feature event

deskripsi:
- resourcing component event
This commit is contained in:
2025-06-30 16:41:17 +08:00
parent 5577ef5d1e
commit d58304a146
14 changed files with 177 additions and 29 deletions

View File

@@ -1,6 +1,13 @@
import { Href } from "expo-router";
export { ITabs };
export { ICustomTab, ITabs };
interface ICustomTab {
icon: string;
label: string;
isActive: boolean;
onPress: () => void;
}
interface ITabs {
id: string;
@@ -9,5 +16,5 @@ interface ITabs {
label: string;
path: Href;
isActive: boolean;
disabled: boolean;
disabled?: boolean;
}