We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e51e02 commit 4f59b43Copy full SHA for 4f59b43
src/components/common/Calendar.tsx
@@ -5,8 +5,8 @@ import { useRef, useState, useEffect } from 'react';
5
6
const events = [
7
{ title: 'Meeting', start: new Date() },
8
- { title: 'Meeting2', start: '2024-05-08', end: '2024-05-12' },
9
- { title: 'Meeting3', start: '2024-05-08', end: '2024-05-10' },
+ { title: 'Meeting2', start: '2024-05-08', end: '2024-05-12', backgroundColor: 'red', borderColor: 'red' },
+ { title: 'Meeting3', start: '2024-05-08', end: '2024-05-10', backgroundColor: 'green', borderColor: 'green' },
10
{ title: 'Meeting4', start: '2024-05-08', end: '2024-05-11' },
11
];
12
0 commit comments