Add a basic FullCalendar to Schedule screen
This commit is contained in:
13
src/components/Schedule/DaySelector.js
Normal file
13
src/components/Schedule/DaySelector.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
import FullCalendar from '@fullcalendar/react';
|
||||
import dayGridPlugin from '@fullcalendar/daygrid';
|
||||
|
||||
export default function DaySelector() {
|
||||
|
||||
return (
|
||||
<FullCalendar
|
||||
initialView='dayGridMonth'
|
||||
plugins={[dayGridPlugin]}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user