/* eslint-disable @typescript-eslint/no-explicit-any */ import React from 'react'; interface RecurringTasksManagerProps { isOpen: boolean; onClose: () => void; tasks: any[]; } export default function RecurringTasksManager({ isOpen, onClose, tasks }: RecurringTasksManagerProps) { if (!isOpen) return null; // Filter tasks that are recurring const recurringTasks = tasks.filter(t => t.isRecurring); return (
You don't have any recurring to-dos yet.
Or, type a frequency to the end of a to-do.