芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/react-dates/src/components/CalendarWeek.jsx
import React from 'react'; import PropTypes from 'prop-types'; import { forbidExtraProps } from 'airbnb-prop-types'; const propTypes = forbidExtraProps({ children: PropTypes.node.isRequired, }); export default function CalendarWeek({ children }) { return (
{children}
); } CalendarWeek.propTypes = propTypes;