fix default checkbox cell value

This commit is contained in:
Elliot DeNolf
2020-10-02 12:34:28 -04:00
parent dde76572e3
commit 52e9e4daa7

View File

@@ -11,7 +11,7 @@ const Checkbox = ({ data }) => (
);
Checkbox.defaultProps = {
data: '',
data: undefined,
};
Checkbox.propTypes = {