- Add Prop Types to ProductFruitsWrapper.jsx
Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { ProductFruits } from "react-product-fruits";
|
import { ProductFruits } from "react-product-fruits";
|
||||||
|
import PropTypes from "prop-types";
|
||||||
|
|
||||||
const ProductFruitsWrapper = React.memo(({ currentUser, workspaceCode }) => {
|
const ProductFruitsWrapper = React.memo(({ currentUser, workspaceCode }) => {
|
||||||
return (
|
return (
|
||||||
@@ -21,3 +22,11 @@ const ProductFruitsWrapper = React.memo(({ currentUser, workspaceCode }) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
export default ProductFruitsWrapper;
|
export default ProductFruitsWrapper;
|
||||||
|
|
||||||
|
ProductFruitsWrapper.propTypes = {
|
||||||
|
currentUser: PropTypes.shape({
|
||||||
|
authorized: PropTypes.bool,
|
||||||
|
email: PropTypes.string
|
||||||
|
}).isRequired,
|
||||||
|
workspaceCode: PropTypes.string.isRequired
|
||||||
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user