Features
Fixes/ Potentially Breaking with Typescript is you previously used IDataTableProps
- If you are importing RDT typescript interfaces such as
IDataTableProps
, they will no longer require you to pass any arguments as and you can just set the type to IDataTableProps
. This better supports a common pattern where you may want to set default props on your table and pass through the props using a wrapping component:
const DBase: React.FC<IDataTableProps> = props => (
<DataData {...props} dense />
)