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 931d273 commit 92cd7f5Copy full SHA for 92cd7f5
src/App.tsx
@@ -1,6 +1,5 @@
1
import Calendar from './components/common/Calendar';
2
3
-
4
function App() {
5
return (
6
<div>
src/components/common/Calendar.tsx
@@ -19,7 +19,6 @@ type Event = {
19
};
20
*/
21
22
23
interface EventInfo {
24
timeText: string;
25
event: {
@@ -215,7 +214,6 @@ export default function Calendar() {
215
214
<div className="mt-10">{selectedDate && <EventCards events={selectedEvents} date={selectedDate} />}</div>
216
</div>
217
);
218
219
}
220
221
function renderEventContent(eventInfo: EventInfo) {
0 commit comments