import React from "react"; const Project = ({ offset, id, start, end, getX, y, dims, colour, eventRadius, onClick, }) => { const length = getX(end) - getX(start); if (offset === undefined) return null; return ( ); }; export default Project;