react-tabbed-group
Version:
React Component for composing tabbed content into groups
22 lines (19 loc) • 307 B
JavaScript
export type TabbedGroupState = {
active: string;
triggers: {
value: string;
key: string;
}
};
export type TabbedGroupProps = {
showImmediate: string;
active: string;
triggers: {
value: string;
key: string;
}
};
export type TriggerObject = {
key: string;
value: string;
}