tabs
tabs copied to clipboard
import {TabPane} from 'rc-tabs' throws an error in typescript
When I import the modules like default
import Tabs, { TabPane } from 'rc-tabs';
The compiler throws an error which says the TabPane module is not available.
TS2614: Module '"rc-tabs"' has no exported member 'TabPane'
It works anyway if I ignore the message, but it keeps throwing this error message every time I make changes in dev environment.
The error happens when I'm using typescript and it goes away when I set this tsconfig parameter to true:
"allowSyntheticDefaultImports": true
It seems that TabPane is not supported: https://github.com/react-component/tabs/pull/562