github jbetancur/react-data-table-component v7.4.4

latest releases: v7.6.2, v7.6.1, v7.6.0...
2 years ago

🥃 Features 🥃

  • Expose ExpanderComponentProps TypeScript type. You can now:
type DataRow = {
....
};

const ExpandedComponent: React.FC<ExpanderComponentProps<DataRow>> = ({ data }) => {
	return <pre>{JSON.stringify(data, null, 2)}</pre>;
};

// or

function ExpandedComponent({ data }: ExpanderComponentProps<DataRow>): JSX.Element {
	return <pre>{JSON.stringify(data, null, 2)}</pre>;
}

Don't miss a new react-data-table-component release

NewReleases is sending notifications on new releases.