about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/home_timeline/index.jsx
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-12 13:17:17 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-12 13:17:17 +0200
commit45776b55b0d97d6a6b8b202d3076f19f1d055573 (patch)
tree3cae814a3dfbfbc3b2bac45bf149e18845170922 /app/assets/javascripts/components/features/home_timeline/index.jsx
parente2ff39bf5db8cecd2bbe348dc2c3cf431a6d36ec (diff)
Responsively changing layout to single-column + nav on smaller screens
Diffstat (limited to 'app/assets/javascripts/components/features/home_timeline/index.jsx')
-rw-r--r--app/assets/javascripts/components/features/home_timeline/index.jsx19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/assets/javascripts/components/features/home_timeline/index.jsx b/app/assets/javascripts/components/features/home_timeline/index.jsx
new file mode 100644
index 000000000..1f4b25450
--- /dev/null
+++ b/app/assets/javascripts/components/features/home_timeline/index.jsx
@@ -0,0 +1,19 @@
+import PureRenderMixin     from 'react-addons-pure-render-mixin';
+import StatusListContainer from '../ui/containers/status_list_container';
+import Column              from '../ui/components/column';
+
+const HomeTimeline = React.createClass({
+
+  mixins: [PureRenderMixin],
+
+  render () {
+    return (
+      <Column icon='home' heading='Home'>
+        <StatusListContainer type='home' />
+      </Column>
+    );
+  },
+
+});
+
+export default HomeTimeline;