mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-07 14:13:58 -05:00
Fix broken types in imported library
This commit is contained in:
25
lib/types/TabTypes.ts
Normal file
25
lib/types/TabTypes.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
export interface TabGroupContent {
|
||||
tab: React.ReactNode;
|
||||
content: React.ReactNode;
|
||||
}
|
||||
|
||||
export interface MattrixwvTabGroupProps {
|
||||
tabs: TabGroupContent[];
|
||||
className?: string;
|
||||
}
|
||||
|
||||
export interface MattrixwvTabListProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export interface MattrixwvTabProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export interface MattrixwvTabPanelsProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export interface MattrixwvTabPanelProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
Reference in New Issue
Block a user