import React from 'react'; import { IcAdd, IcMoreVert } from '../res/icons'; import { useCalendarGestures } from '../hooks/useCalendarGestures'; interface CalendarHeaderProps { title: string; } export const CalendarHeader: React.FC = ({ title }) => { const { bindTap } = useCalendarGestures(); return (

{title}

{/* Week Header - Moved here to be sticky/fixed with header if needed, but keeping in Grid is fine too if Grid is the scroll container. However, usually the week header is fixed. For now, I'll assume Grid handles it or I should move it here. Let's move it here to match typical calendar apps where week days stay visible. */}
{['一', '二', '三', '四', '五', '六', '日'].map(header => (
{header}
))}
); };