summaryrefslogtreecommitdiff
path: root/src/components/timeline/Timeline.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/timeline/Timeline.js')
-rw-r--r--src/components/timeline/Timeline.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/components/timeline/Timeline.js b/src/components/timeline/Timeline.js
deleted file mode 100644
index a2a858eb..00000000
--- a/src/components/timeline/Timeline.js
+++ /dev/null
@@ -1,15 +0,0 @@
-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;