react-native-scrollable-tab-view
react-native-scrollable-tab-view copied to clipboard
View add tabLabel props,ts will output an error,View not have this props,how to fix
<View tabLabel="">
import React, {FC} from 'react'
import {View, ViewProps} from 'react-native'
interface TabProps extends ViewProps {
tabLabel: string;
}
export const TabView: FC<TabProps> = ({tabLabel, ...props}) => (
<View {...props} />
)