/* --------------------------------- NAV_BAR --------------------------------- */ // http://react-day-picker.js.org/examples/elements-navbar import React from "react"; import PropTypes from "prop-types"; import Button from "../../button/Button"; import {JDMonthTextChanger} from "../../../utils/utils"; const Navbar = ({ nextMonth, previousMonth, onPreviousClick, onNextClick, className, localeUtils }:any) => { const months = localeUtils.getMonths(); const prev = months[previousMonth.getMonth()]; const next = months[nextMonth.getMonth()]; return (