blueprint
blueprint copied to clipboard
TabsProps has "id" as required, but is not required in component usage
TabsProps
id
prop is required, but somewhere this gets changed to optional:
I think this has to do with the usage of React.PureComponent
in AbstractPureComponent
, it seems this changes all properties to optional, which could lead to major issues.
At somepoint, all component class
es should probably be migrated to functions, per React's reccomendation: https://react.dev/reference/react/PureComponent#alternatives