New user store structure and updated packages

This commit is contained in:
Jori Lallo
2016-06-25 23:31:22 -07:00
parent 3bbdaecbf2
commit a2a642c16c
11 changed files with 167 additions and 135 deletions

View File

@@ -1,7 +1,8 @@
import React from "react";
import { observer } from 'mobx-react';
import Helmet from "react-helmet";
const Application = (props) => {
const Application = observer((props) => {
return (
<div style={{ width: '100%' }}>
<Helmet
@@ -13,7 +14,7 @@ const Application = (props) => {
{ props.children }
</div>
);
};
});
Application.propTypes = {
children: React.PropTypes.node.isRequired,