首页 > 解决方案 > 我想为选项添加不同的颜色以在 react-big-calendar 中显示更多链接

问题描述

在此处输入图像描述

我想为选项添加不同的颜色以在 react-big-calendar 中显示更多链接

标签: reactjscalendarreact-big-calendar

解决方案


您可以将消息道具用于日历组件。

<Calendar
...other props
messages={{
         ...other messages
         showMore: (total) => (<span style={{color: 'red'}}>+{total} more</span>)
}}
/>

推荐阅读