#
Calendar
This example displays a calendar with activities and a plus icon to add events by date.
React / Next.js
Su
Mo
Tu
We
Th
Fr
Sa
1
🧠 Plan Monthly Goals
2
πŸ—“οΈ Schedule Content Calendar
3
4
πŸ“½οΈ Record YouTube Video
5
πŸ’¬ Twitter/LinkedIn Thread
6
πŸ§ͺ Test New Tech Stack
7
✍️ Write Blog Post
8
9
πŸ“¦ Open Source Contribution
10
πŸŽ™οΈ Podcast Recording
11
12
πŸ“Š Analytics Review
13
14
πŸ§‘β€πŸ’» Work on SaaS Project
15
🧡 Post Dev Thread
16
πŸ” SEO Optimization
17
πŸ“§ Newsletter Send Out
18
πŸ” Repurpose Old Content
19
20
πŸ› οΈ Build Mini App/Tool
21
22
πŸ“… Livestream Coding Session
23
πŸ§‘β€πŸ« Community Q&A
24
25
26
27
28
πŸ“˜ Plan Next Month’s Content
29
30
βœ… Review Monthly Progress
31
🌟 Chill & Celebrate Wins
Calendar
Calendar renders a monthly grid view where each day can show activities and a plus icon for adding new items.
PropDescriptionValue(s)
`activities`An array of activity objects to show per date.`{ title: string; date: Date; funcss?: string; color?: string; data?: any; footer?: React.ReactNode; }[]`
`onAdd`Callback triggered when the plus icon on a date is clicked.`(date: Date) => void`
`onActivityClick`Callback triggered when an activity is clicked.`(activity: Activity) => void`
`funcss`Extra classes for styling the outer calendar container.`string`