Skip to content

Latest commit

 

History

History
executable file
·
21 lines (18 loc) · 426 Bytes

README.md

File metadata and controls

executable file
·
21 lines (18 loc) · 426 Bytes

React Calendar Heatmap

A heatmap graph component built on SVG, based on react-calendar-heatmap. It doesn't use a calendar, but instead an array of nested objects.

Expected structure:

[
  {
    section: "Section 1",
    tabs: [
      {
        title: "First tab title",
        value: 21
      },
      // More tabs...
    ]
  },
  // More sections...
]