import { Box, Card, Grid, Typography } from '@mui/joy' import { useState } from 'react' import RepeatSection from '../ChoreEdit/RepeatSection' const DemoScheduler = () => { const [assignees, setAssignees] = useState([]) const [frequency, setFrequency] = useState(2) const [frequencyType, setFrequencyType] = useState('weekly') const [frequencyMetadata, setFrequencyMetadata] = useState({ months: ['may', 'june', 'july'], }) return ( <> {}} frequencyError={null} allUserThings={[]} onTriggerUpdate={thingUpdate => {}} OnTriggerValidate={() => {}} isAttemptToSave={false} selectedThing={null} /> Advanced Scheduling and Automation Scheduling is a crucial aspect of managing tasks and chores. Donetick offers basic scheduling options, such as recurring tasks daily, weekly, or yearly, as well as more customizable schedules like specific days of the week or month. For those unsure of exact frequencies, the adaptive scheduling feature averages based on how often you mark a task as completed. Additionally, Donetick supports automation by linking tasks with triggers via API. When specific conditions are met, Donetick’s Things feature will automatically initiate the task, streamlining your workflow. ) } export default DemoScheduler