aboutsummaryrefslogtreecommitdiffstats
path: root/app/containers/App/index.js
blob: 0e4f3b1e4f36f216af9b58a1ff81db8b716c8eaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 *
 * App
 *
 * This component is the skeleton around the actual pages, and should only
 * contain code that should be seen on all pages. (e.g. navigation bar)
 */

import React from 'react';
import styled from 'styled-components';

import MainHome from '@/containers/MainHome/Loadable';

const AppWrapper = styled.div`
  display: flex;
  flex-direction: column;
  min-height: 100vh;
`;

const App = () => (
  <AppWrapper>
    <MainHome />
  </AppWrapper>
);

export default App;