summaryrefslogtreecommitdiffstats
path: root/webui/src/Components/Timeline/EndNode.js
diff options
context:
space:
mode:
authorOliver Poignant <oliver@poignant.se>2017-01-01 13:39:07 +0100
committerOliver Poignant <oliver@poignant.se>2017-01-01 13:39:07 +0100
commit19815eeddb5f47f7c379e6e459db9739fc4ddb6a (patch)
treef620c3d749379806bcdbc241216b1db77af18070 /webui/src/Components/Timeline/EndNode.js
parenta9f151526a7582d4448419e5021e7139223b7f01 (diff)
downloadGit-Auto-Deploy-19815eeddb5f47f7c379e6e459db9739fc4ddb6a.zip
Git-Auto-Deploy-19815eeddb5f47f7c379e6e459db9739fc4ddb6a.tar.gz
Git-Auto-Deploy-19815eeddb5f47f7c379e6e459db9739fc4ddb6a.tar.bz2
Web UI for event log auditing
Diffstat (limited to 'webui/src/Components/Timeline/EndNode.js')
-rw-r--r--webui/src/Components/Timeline/EndNode.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/webui/src/Components/Timeline/EndNode.js b/webui/src/Components/Timeline/EndNode.js
new file mode 100644
index 0000000..072872c
--- /dev/null
+++ b/webui/src/Components/Timeline/EndNode.js
@@ -0,0 +1,23 @@
+import React, { Component } from 'react';
+import './EndNode.scss';
+
+class EndNode extends Component {
+ constructor(props) {
+ super(props);
+
+ this.state = {
+ date: props.date
+ };
+ }
+
+ render() {
+ return (
+ <div className={"EndNode"}>
+ <span className="horizontal-line"></span>
+ <p className="date">{this.state.date}</p>
+ </div>
+ );
+ }
+}
+
+export default EndNode;