[WEB-5585]chore: timeline chart refactor (#8246)

* chore: timeline chart refactor

* fix: format
This commit is contained in:
Vamsi Krishna 2025-12-10 01:00:37 +05:30 committed by GitHub
parent 8bb7ebb725
commit 368af223db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 16 additions and 1 deletions

View file

@ -1 +1,2 @@
export * from "./dependency";
export * from "./layers";

View file

@ -0,0 +1,8 @@
import type { FC } from "react";
type Props = {
itemsContainerWidth: number;
blockCount: number;
};
export const GanttAdditionalLayers: FC<Props> = () => null;

View file

@ -0,0 +1 @@
export { GanttAdditionalLayers } from "./additional-layers";