Calendar page adding

This commit is contained in:
Wissarut Kanasub 2023-11-06 13:02:30 +07:00
parent 074aeb70bc
commit 568f739b55
2 changed files with 12 additions and 1 deletions

View File

@ -12,7 +12,7 @@ const Calendar = () => {
events={[
{ title: 'Event 1', date: '2023-11-10' },
{ title: 'Event 2', date: '2023-11-15' },
// Add more events as needed
{ title: 'Event 2', date: '2023-11-15' },
]}
headerToolbar={{
start: 'prev,next',

View File

@ -0,0 +1,11 @@
import React from 'react'
function calendarPage() {
return (
<div>
</div>
)
}
export default calendarPage