"use client"; import React from 'react'; import { useAttendance } from '../hooks/useAttendance'; export default function ClockButton({ teacherId }: { teacherId: string }) { const { todayRecords, clockToggle } = useAttendance(); const last = todayRecords.filter(r => r.teacherId === teacherId).pop(); const nextType = last?.type === 'in' ? 'out' : 'in'; return ( ); }