diff --git a/web/src/components/Calendar.jsx b/web/src/components/Calendar.jsx deleted file mode 100644 index e5f5d177c..000000000 --- a/web/src/components/Calendar.jsx +++ /dev/null @@ -1,26 +0,0 @@ -import { h } from 'preact'; -import { format } from 'date-fns'; - -export default function Calendar({ date, hours = 0, events = 0, selected = false }) { - const bg = selected ? 'bg-blue-500 bg-opacity-80' : 'bg-gray-500'; - return ( -