import { startOfMonth } from "date-fns"; import React from "react"; import type { DayPickerProps } from "react-day-picker"; import styles from "./styles.module.css"; interface NavigationFieldsetProps { props: DayPickerProps; setProps: React.Dispatch>; } export function NavigationFieldset({ props, setProps, }: NavigationFieldsetProps) { return (
Navigation{" "}
{props.numberOfMonths !== undefined && props.numberOfMonths > 1 && ( )} {props.numberOfMonths !== undefined && props.numberOfMonths > 1 && ( )}
); }