Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
716cf56cb2.url-de-test.ws
/
htdocs
/
node_modules
/
@fullcalendar
/
timegrid
/
/srv/data/web/vhosts/716cf56cb2.url-de-test.ws/htdocs/node_modules/@fullcalendar/timegrid/README.md
# FullCalendar Time Grid Plugin Display events on time slots ## Installation Install the necessary packages: ```sh npm install @fullcalendar/core @fullcalendar/timegrid ``` ## Usage Instantiate a Calendar with the necessary plugin: ```js import { Calendar } from '@fullcalendar/core' import timeGridPlugin from '@fullcalendar/timegrid' const calendarEl = document.getElementById('calendar') const calendar = new Calendar(calendarEl, { plugins: [timeGridPlugin], initialView: 'timeGridWeek', events: [ { title: 'Meeting', start: new Date() } ] }) calendar.render() ```