From 94a5a29964ab679f54a4be0c9370c7ae1f2499d7 Mon Sep 17 00:00:00 2001 From: Jori Lallo Date: Sat, 13 May 2017 16:00:50 -0700 Subject: [PATCH] Removed unused component --- frontend/components/Layout/Layout.js | 6 ++++++ frontend/index.js | 4 +--- frontend/scenes/Application.js | 29 ---------------------------- 3 files changed, 7 insertions(+), 32 deletions(-) delete mode 100644 frontend/scenes/Application.js diff --git a/frontend/components/Layout/Layout.js b/frontend/components/Layout/Layout.js index 95caadec8..290d598a1 100644 --- a/frontend/components/Layout/Layout.js +++ b/frontend/components/Layout/Layout.js @@ -56,6 +56,12 @@ type Props = { title={ this.props.titleText ? `${this.props.titleText} - Atlas` : 'Atlas' } + meta={[ + { + name: 'viewport', + content: 'width=device-width, initial-scale=1.0', + }, + ]} /> {this.props.loading && } diff --git a/frontend/index.js b/frontend/index.js index 5da45b0f4..1546436c6 100644 --- a/frontend/index.js +++ b/frontend/index.js @@ -16,8 +16,6 @@ import 'styles/transitions.scss'; import 'styles/hljs-github-gist.scss'; import 'styles/codemirror.scss'; -import Application from 'scenes/Application'; - import Home from 'scenes/Home'; import Dashboard from 'scenes/Dashboard'; import Atlas from 'scenes/Atlas'; @@ -50,7 +48,7 @@ render(
- + - - {this.props.children} -
- ); - } -} - -export default Application;