Skip to content

Instantly share code, notes, and snippets.

@markopavlovic
Created October 10, 2020 10:01
Show Gist options
  • Save markopavlovic/a740e915e02957f310a17e670969c4c4 to your computer and use it in GitHub Desktop.
Save markopavlovic/a740e915e02957f310a17e670969c4c4 to your computer and use it in GitHub Desktop.
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