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
In the readMe, this code is missing a brace after onEventClick.
month={7}
year={2015}
events={events}
onEventClick={(target, eventData, day) => console.log(eventData)
/>```
Here is the fix.
```<EventCalendar
month={7}
year={2015}
events={events}
onEventClick={(target, eventData, day) => console.log(eventData)}
/>```
Also you could add this to the readMe.
To update import for ES6, use:
`import EventCalendar from 'react-event-calendar';`
The text was updated successfully, but these errors were encountered:
In the readMe, this code is missing a brace after onEventClick.
The text was updated successfully, but these errors were encountered: