next-gantt
TypeScript icon, indicating that this package has built-in type declarations

3.3.0 • Public • Published

Gantt Chart for Next.js

Forked from Frapee Gantt. Currently under construction.

Usage

import { Task, Gantt } from "next-gantt";

export default function Home() {
  const tasks: Task[] = [
    {
      id: "Task 1",
      name: "Redesign website",
      start: "2016-12-28",
      end: "2016-12-31",
      progress: 20,
      // dependencies: 'Task 2, Task 3'
    },
  ];

  return (
    <>
      <main>
        <Gantt tasks={tasks} />
      </main>
    </>
  );
}

Readme

Keywords

none

Package Sidebar

Install

npm i next-gantt

Weekly Downloads

0

Version

3.3.0

License

MIT

Unpacked Size

46.2 kB

Total Files

45

Last publish

Collaborators

  • ctjlewis