diff --git a/.eslintrc.js b/.eslintrc.js index a2cb42d83..c60266d29 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -27,7 +27,8 @@ module.exports = { 'no-param-reassign': 0, 'new-cap': 0, 'import/no-unresolved': 'error', - 'linebreak-style': 0 + 'linebreak-style': 0, + 'import/no-named-as-default': 'off' }, settings: { 'import/resolver': { diff --git a/frontend/components/App/App.jsx b/frontend/components/App/App.jsx new file mode 100644 index 000000000..0d58bf632 --- /dev/null +++ b/frontend/components/App/App.jsx @@ -0,0 +1,22 @@ +import React, { Component, PropTypes } from 'react'; +import { Style } from 'radium'; +import globalStyles from '../../styles/global'; + +export class App extends Component { + static propTypes = { + children: PropTypes.element, + }; + + render () { + const { children } = this.props; + + return ( +
+