diff --git a/frontend/components/Layout/Layout.js b/frontend/components/Layout/Layout.js index 95caadec..290d598a 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 5da45b0f..1546436c 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;