forked from sombochea/verdaccio-ui
11 lines
301 B
TypeScript
11 lines
301 B
TypeScript
|
import React, { forwardRef } from 'react';
|
||
|
import { default as MaterialUITab, TabProps } from '@material-ui/core/Tab';
|
||
|
|
||
|
type TabRef = HTMLButtonElement;
|
||
|
|
||
|
const Tab = forwardRef<TabRef, TabProps>(function Tab(props, ref) {
|
||
|
return <MaterialUITab {...props} innerRef={ref} />;
|
||
|
});
|
||
|
|
||
|
export default Tab;
|