Is there any idea how to add fullcalendar to SPFx react functional component?
I need to add the below fullcalendar component in my SPFx react solution.
https://fullcalendar.io/docs/react
I have found the below link but it is for the class component.
https://github.com/garima2510/SPFx-React-FullCalendar-Panel
Can anyone suggest to me fullcalendar for SPFx React Class Component?
I have imported the Font Awesome library in SPFx React Class Component Solution and It is working correctly. I have used the below link as a reference,
Now, I need to add Font Awesome library in SPFx React Functional Component Solution without using any npm packages.
I have imported the font-family in my SPFx react solution. Below is the code snippet for the same.
@font-face {
font-family: 'Work Sans Regular';
font-style: normal;
font-weight: normal;
src: local('Work Sans Regular'), url('../fonts/WorkSans-Regular.woff2') format('woff2');
}
.root-div {
font-family: 'Work Sans Regular' !important;
}
I am facing the above error after adding font family in my solution.

Can anyone help me with the above points?
Thanks
