Last active
July 25, 2020 16:02
-
-
Save jenil94/9cdc8752c03898e8dcf69d0d0f57381b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.... | |
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