components.widgets.Calendar.CalendarCell.jsx Maven / Gradle / Ivy
The newest version!
import React from 'react'
import PropTypes from 'prop-types'
import classNames from 'classnames'
import { isDayOff } from './utils'
export function CalendarCell({ value, markDaysOff, children }) {
return (
{children}
)
}
CalendarCell.propTypes = {
value: PropTypes.any,
markDaysOff: PropTypes.any,
children: PropTypes.any,
}
export default CalendarCell