diff options
Diffstat (limited to 'src/components/timeline/Timeline.js')
| -rw-r--r-- | src/components/timeline/Timeline.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/timeline/Timeline.js b/src/components/timeline/Timeline.js new file mode 100644 index 00000000..a2a858eb --- /dev/null +++ b/src/components/timeline/Timeline.js @@ -0,0 +1,15 @@ +import React from "react"; +import TimelineControlsContainer from "../../containers/timeline/TimelineControlsContainer"; +import TimelineLabelsContainer from "../../containers/timeline/TimelineLabelsContainer"; +import "./Timeline.css"; + +const Timeline = ({currentTick, lastSimulatedTick}) => ( + <div className="timeline-bar"> + <div className="timeline-container"> + <TimelineLabelsContainer/> + <TimelineControlsContainer/> + </div> + </div> +); + +export default Timeline; |
