0.1.0 • Published 7 months ago

react-gantt-table v0.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

React gantt table

Gantt table component

Usage

import React from "react"
import { GanttTable, GanttTableEvent } from "react-gantt-table"

function App() {
  const events: GanttTableEvent[] = [
    { title: "Alfonso XII", start: 1874, end: 1885 },
    { title: "Alfonso XIII", start: 1886, end: 1931 },
    { title: "Spanish Republic", start: 1931, end: 1939 },
    { title: "Francisco Franco", start: 1936, end: 1975, color: "red" },
    { title: "Juan Carlos I", start: 1975, end: 2014 },
  ]

  return (
    <div className="App">
      <header className="App-header">
        <GanttTable events={events} step={10} />
      </header>
    </div>
  )
}