import React, { type FC } from 'react' import type { YearAndMonthPickerHeaderProps } from '../types' import { useMonths } from '../hooks' import { RiArrowUpSLine } from '@remixicon/react' const Header: FC = ({ selectedYear, selectedMonth, onClick, }) => { const months = useMonths() return (
{/* Year and Month */}
) } export default React.memo(Header)