import * as React from "react"; type Props = { month: string; right: string; }; function Month(props: Props) { return (
{props.month}
); } export default Month;