import React, { SyntheticEvent } from "react"; import styles from "./scroll.module.css"; export const Scroll: React.FC<{ ganttHeight: number; ganttFullHeight: number; headerHeight: number; onScroll: (event: SyntheticEvent) => void; }> = ({ ganttHeight, ganttFullHeight, headerHeight, onScroll }) => { return (
); };