Make data prop required, but allow it to be anything.

This commit is contained in:
Tanner Linsley 2018-05-18 17:34:03 -06:00
parent 8f062550aa
commit 7a6ed50b81

View File

@ -2,7 +2,7 @@ import PropTypes from 'prop-types'
export default {
// General
data: PropTypes.array,
data: PropTypes.any.isRequired,
loading: PropTypes.bool,
showPagination: PropTypes.bool,
showPaginationTop: PropTypes.bool,