diff options
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/TimelineTop.tsx')
-rw-r--r-- | FrontEnd/src/app/views/timeline-common/TimelineTop.tsx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/TimelineTop.tsx b/FrontEnd/src/app/views/timeline-common/TimelineTop.tsx index 93a2a32c..39cfa426 100644 --- a/FrontEnd/src/app/views/timeline-common/TimelineTop.tsx +++ b/FrontEnd/src/app/views/timeline-common/TimelineTop.tsx @@ -1,5 +1,7 @@ import React from "react"; +import TimelineLine from "./TimelineLine"; + export interface TimelineTopProps { height?: number | string; children?: React.ReactElement; @@ -8,11 +10,7 @@ export interface TimelineTopProps { const TimelineTop: React.FC<TimelineTopProps> = ({ height, children }) => { return ( <div style={{ height: height }} className="timeline-top"> - <div className="timeline-line-area-container"> - <div className="timeline-line-area"> - <div className="timeline-line-segment"></div> - </div> - </div> + <TimelineLine center={null} /> {children} </div> ); |