All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy