react-modern-gantt
Version:
A modern, customizable Gantt chart component for React applications with export functionality
9 lines (8 loc) • 364 B
TypeScript
import React from "react";
import { GanttChartProps, GanttChartRef } from "@/types";
/**
* GanttChart Component with ViewMode support and Export functionality
* A modern, customizable Gantt chart for project timelines
*/
declare const GanttChart: React.ForwardRefExoticComponent<GanttChartProps & React.RefAttributes<GanttChartRef>>;
export default GanttChart;