Skip to content

Instantly share code, notes, and snippets.

@jenil94
Last active July 25, 2020 16:02
Show Gist options
  • Save jenil94/9cdc8752c03898e8dcf69d0d0f57381b to your computer and use it in GitHub Desktop.
Save jenil94/9cdc8752c03898e8dcf69d0d0f57381b to your computer and use it in GitHub Desktop.
....
import { AiOutlineLeft, AiOutlineRight } from "react-icons/ai";
import { format } from "date-fns";
const Calendar = () => {
....
const getHeader = () => {
return (
<div class="header">
<div className="todayButton">Today</div>
<AiOutlineLeft className="navIcon" />
<AiOutlineRight className="navIcon" />
<h2 className="currentMonth">{format(activeDate, "MMMM yyyy")}</h2>
</div>
);
};
....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment