This repository has been archived by the owner on Apr 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a158ab
commit 0692c34
Showing
25 changed files
with
507 additions
and
541 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,17 @@ | ||
'use client' | ||
import { Grid } from "@mui/material"; | ||
import FullCalendar from '@fullcalendar/react' | ||
import dayGridPlugin from '@fullcalendar/daygrid' // a plugin! | ||
'use client'; | ||
import FullCalendar from '@fullcalendar/react'; | ||
import dayGridPlugin from '@fullcalendar/daygrid'; // a plugin! | ||
|
||
export default function personalPD(){ | ||
return ( | ||
<FullCalendar | ||
plugins={[ dayGridPlugin ]} | ||
initialView="dayGridMonth" | ||
weekends={false} | ||
events={[ | ||
{ title: 'taco tuesday', date: '2023-10-30' }, | ||
{ title: 'first event!!', date: '2023-10-30' } | ||
]} | ||
/> | ||
); | ||
|
||
} | ||
export default function personalPD() { | ||
return ( | ||
<FullCalendar | ||
plugins={[dayGridPlugin]} | ||
initialView="dayGridMonth" | ||
weekends={false} | ||
events={[ | ||
{ title: 'taco tuesday', date: '2023-10-30' }, | ||
{ title: 'first event!!', date: '2023-10-30' }, | ||
]} | ||
/> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.