8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
import type { FC } from "react";
|
|
|
|
type Props = {
|
|
itemsContainerWidth: number;
|
|
blockCount: number;
|
|
};
|
|
|
|
export const GanttAdditionalLayers: FC<Props> = () => null;
|