Basic chart

The smallest thing that renders: a task array and a height.

demo.tsx
"use client";

import { Gantt } from "@art-tools/react-gantt";
import { mockTasks } from "@am/mock-data/sample";

export function BasicDemo() {
  return <Gantt tasks={mockTasks} height={420} />;
}