You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building an app with vite the css import doesn't work:
import'react-calendar-timeline/lib/Timeline.css'
it needs to be changed to:
import'react-calendar-timeline/dist/style.css';
The defaultTimeStart and defaultTimeEnd props are hardcoded to number which gives a type error when using Moment as a date type. (I tried to use unix timestamps but this broke the timeline, so there might be another bug)