bb-plane-fork/apps/web/ce/components/gantt-chart/layers/additional-layers.tsx
Vamsi Krishna 368af223db
[WEB-5585]chore: timeline chart refactor (#8246)
* chore: timeline chart refactor

* fix: format
2025-12-10 01:00:37 +05:30

8 lines
166 B
TypeScript

import type { FC } from "react";
type Props = {
itemsContainerWidth: number;
blockCount: number;
};
export const GanttAdditionalLayers: FC<Props> = () => null;