[WEB-5585]chore: timeline chart refactor (#8246)
* chore: timeline chart refactor * fix: format
This commit is contained in:
parent
8bb7ebb725
commit
368af223db
4 changed files with 16 additions and 1 deletions
|
|
@ -1 +1,2 @@
|
|||
export * from "./dependency";
|
||||
export * from "./layers";
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
import type { FC } from "react";
|
||||
|
||||
type Props = {
|
||||
itemsContainerWidth: number;
|
||||
blockCount: number;
|
||||
};
|
||||
|
||||
export const GanttAdditionalLayers: FC<Props> = () => null;
|
||||
1
apps/web/ce/components/gantt-chart/layers/index.ts
Normal file
1
apps/web/ce/components/gantt-chart/layers/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export { GanttAdditionalLayers } from "./additional-layers";
|
||||
Loading…
Add table
Add a link
Reference in a new issue