CustomView.js 428 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import KUSchedule from "../Schedule/KUSchedule.js";
import ScheduleList from "../Schedule/ScheduleList.js";
import { createPlugin } from '@fullcalendar/react';

const CustomView = () => {
    return (
        <div className='fc-custom-view border-top border-dark pt-2'>
            <KUSchedule />
            <ScheduleList />
        </div>
    )
}

export default createPlugin({
    views: {
        custom: CustomView
    }
})