/** * Check-in Dashboard App - Overview of automatic check-ins */ import React, { useState } from 'react'; export function CheckinDashboard({ projectId }: { projectId?: number }) { const [questions] = useState([ { id: 1, title: 'What did you work on today?', schedule: 'Weekdays at 5pm', answers_count: 45, paused: false }, { id: 2, title: 'What are your goals for this week?', schedule: 'Mondays at 9am', answers_count: 12, paused: false }, { id: 3, title: 'Any blockers or concerns?', schedule: 'Every other day at 10am', answers_count: 28, paused: true }, ]); return (

Automatic Check-ins

{questions.map(question => (

{question.title}

{question.paused && ( PAUSED )}
{question.schedule}
{question.answers_count} responses
))}
); }