소스 검색

Fix prop type for popover

create-reusable-mui-modal
mladen.dubovac 4 년 전
부모
커밋
86a258b6da
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/components/MUI/PopoverComponent.js

+ 1
- 1
src/components/MUI/PopoverComponent.js 파일 보기

@@ -26,7 +26,7 @@ const PopoverComponent = ({ open, anchorEl, onClose, content }) => {
};

PopoverComponent.propTypes = {
anchorEl: PropTypes.element,
anchorEl: PropTypes.object,
open: PropTypes.bool.isRequired,
onClose: PropTypes.func.isRequired,
content: PropTypes.any,

Loading…
취소
저장