import React from "react" import { defaultT } from "ez-localize" import { GanttChart } from "./GanttChart" export function GanttChartDemo() { return (
{}} onMoveRowUp={() => {}} onMoveRowLeft={() => {}} onMoveRowRight={() => {}} onRowClick={() => { alert("onRowClick") }} onAddRow={() => { alert("sdfasdf") }} onInsertRowAbove={() => {}} onInsertRowBelow={() => {}} onInsertChildRow={() => {}} onRemoveRow={() => {}} />
) }