import React from "react";
import { DayPicker } from "react-day-picker";
const bookedDays = [
new Date(2021, 5, 8),
new Date(2021, 5, 9),
new Date(2021, 5, 11)
];
const style = `
.my-booked-class {
background-color: tomato;
color: white;
border-radius: 50%;
}
`;
export function ModifiersClassnames() {
return (
<>
>
);
}