Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Commit

Permalink
[web] terminal fixes and blur for scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmota committed Mar 24, 2019
1 parent df28af7 commit 72c25d6
Show file tree
Hide file tree
Showing 6 changed files with 889 additions and 765 deletions.
Binary file removed packages/web/public/assets/streamhut_gray.gif
Binary file not shown.
7 changes: 6 additions & 1 deletion packages/web/src/App.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
import React, { Component } from 'react';
import Home from './Home'
import Channel from './Channel'
import Layout from './Layout'

class App extends Component {
render() {
let component = <Home />
if (window.location.pathname !== '/') {
component = <Channel />
}
return (
<Layout>
<Home />
{component}
</Layout>
);
}
Expand Down

0 comments on commit 72c25d6

Please sign in to comment.