10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
type TabContentOptionalProps = {
|
|
retain?: boolean;
|
|
};
|
|
|
|
type TabContentProps<T> = TabContentOptionalProps &
|
|
import('react').PropsWithChildren<{
|
|
changingTabId: T;
|
|
tabId: T;
|
|
}>;
|