aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/components/environment-box/environment-box.js
diff options
context:
space:
mode:
authorKoren Lev <korenlev@gmail.com>2017-08-16 11:33:56 +0300
committerKoren Lev <korenlev@gmail.com>2017-08-16 11:33:56 +0300
commitef65f0fefeab974ec06426f289469c45e804678a (patch)
tree38c3ce9fcc62c474b45e5ee8960621cee982b75c /ui/imports/ui/components/environment-box/environment-box.js
parent798f7292513d08e0120e52775f0a4952adc7cef3 (diff)
scans,messages - default latest time first, tree as drawer, env re-arranged
Change-Id: Ib6bc2e6d87821c3583b6a0521b759cedcf3a9868 Signed-off-by: Koren Lev <korenlev@gmail.com>
Diffstat (limited to 'ui/imports/ui/components/environment-box/environment-box.js')
-rw-r--r--ui/imports/ui/components/environment-box/environment-box.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/ui/imports/ui/components/environment-box/environment-box.js b/ui/imports/ui/components/environment-box/environment-box.js
new file mode 100644
index 0000000..cbb282e
--- /dev/null
+++ b/ui/imports/ui/components/environment-box/environment-box.js
@@ -0,0 +1,37 @@
+/*
+ * Template Component: EnvironmentBox
+ */
+
+//import { Meteor } from 'meteor/meteor';
+import { Template } from 'meteor/templating';
+//import { ReactiveDict } from 'meteor/reactive-dict';
+
+import './environment-box.html';
+
+/*
+ * Lifecycles
+ */
+
+Template.EnvironmentBox.onCreated(function() {
+});
+
+/*
+Template.EnvironmentBox.rendered = function() {
+};
+*/
+
+/*
+ * Events
+ */
+
+Template.EnvironmentBox.events({
+});
+
+/*
+ * Helpers
+ */
+
+Template.EnvironmentBox.helpers({
+}); // end: helpers
+
+