Created
October 10, 2020 10:01
-
-
Save markopavlovic/a740e915e02957f310a17e670969c4c4 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 React from "react"; | |
| import dateFns from "date-fns"; | |
| class Calendar extends React.Component { | |
| render() { | |
| return ( | |
| <div> | |
| <div>Header</div> | |
| <div>Days</div> | |
| <div>Cells</div> | |
| </div> | |
| ); | |
| } | |
| } | |
| export default Calendar; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment