if anyone has any idea to implement full calender please share using nextjs. i tried using this demo https://fullcalendar.io/docs/react But it shows an error like this
Here is the code snipnet
import React from 'react'
import FullCalendar from '@fullcalendar/react' // must go before plugins
import dayGridPlugin from '@fullcalendar/daygrid' // a plugin!
export default class Calender extends React.Component {
render() {
return (
<FullCalendar
plugins={[ dayGridPlugin ]}
initialView="dayGridMonth"
/>
)
}
}