fix prop type error

This commit is contained in:
Paul Chavard 2020-07-22 11:10:14 +02:00
parent 69ab2e44fb
commit 87a1661cdc

View file

@ -15,7 +15,7 @@ function TypeDeChampCarteOptions({ isVisible, children }) {
TypeDeChampCarteOptions.propTypes = {
isVisible: PropTypes.bool,
children: PropTypes.array
children: PropTypes.node
};
export default TypeDeChampCarteOptions;