import React from 'react'; import { Tooltip } from 'antd'; export default () => { const now = new Date(); const isChristmas = now.getMonth() === 11 && now.getDate() === 25; return ( isChristmas && (
) ); };