![JAR search and dependency download from the Maven repository](/logo.png)
components.widgets.Calendar.CalendarDateCell.jsx Maven / Gradle / Ivy
import React from 'react'
import classNames from 'classnames'
import PropTypes from 'prop-types'
import { isDayOff, isCurrentDay } from './utils'
export function CalendarDateCell({ children, value, markDaysOff }) {
return (
{children}
)
}
CalendarDateCell.propTypes = {
children: PropTypes.any,
value: PropTypes.any,
markDaysOff: PropTypes.any,
}
export default CalendarDateCell
© 2015 - 2025 Weber Informatics LLC | Privacy Policy