import React from "react"; import PropTypes from "prop-types"; import {JDMonthTextChanger} from "../../../utils/utils"; type IProps = { date: Date; displayYear: boolean; } const JDdateCaption: React.SFC = ({date, displayYear}) => { const month = JDMonthTextChanger(date.getMonth()); const year = date.getFullYear(); return (
{displayYear && {year}} {month}
); }; JDdateCaption.defaultProps = { date: new Date() }; export default JDdateCaption;