Dynamic weekday border color [React-Calendar]

185 Views Asked by At

I want to add dynamic color to border of each weekday in react-calendar. And want to change text on hover on each date.

Sample Image:

Sample Image

I tried adding onMouseEnter event using tileContent props

tileContent={({date})=>(
  <div onMouseEnter={(e)=>{setHoverText("hello")}}/>)}
0

There are 0 best solutions below