import PropTypes from "prop-types"; import * as React from "react"; export function CustomTabPanel(props) { const {children, value, index, ...other} = props; return ( ); } CustomTabPanel.propTypes = { children: PropTypes.node, index: PropTypes.number.isRequired, value: PropTypes.number.isRequired, };