diff options
author | crupest <crupest@outlook.com> | 2021-01-13 17:14:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-13 17:14:34 +0800 |
commit | 31268d3cb8870452a0d6804b61a94ef1faafa09e (patch) | |
tree | acb9cf4e310c5170795b16ff31afb95df707e3c7 /FrontEnd/src/app/views/timeline-common/TimelineTop.tsx | |
parent | cf14e89a51919e053ba89b0c78ee71940b18e40a (diff) | |
parent | af90b402dae2f4b9406c815865df9de034d59f87 (diff) | |
download | timeline-31268d3cb8870452a0d6804b61a94ef1faafa09e.tar.gz timeline-31268d3cb8870452a0d6804b61a94ef1faafa09e.tar.bz2 timeline-31268d3cb8870452a0d6804b61a94ef1faafa09e.zip |
Merge pull request #209 from crupest/front-dev
Front development.
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> ); |