diff options
| author | Jules Laplace <jules@okfoc.us> | 2017-03-20 01:03:23 +0100 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2017-03-20 01:03:23 +0100 |
| commit | bf7ac6af587f68553b83a54fcb724dfc9d684644 (patch) | |
| tree | c08ae482e8a7a5804018aab2610771fed64c5855 /client/components/App.jsx | |
| parent | 29c18b202b291304ee8b08c2387b25542f76c414 (diff) | |
refactor frontend
Diffstat (limited to 'client/components/App.jsx')
| -rw-r--r-- | client/components/App.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/App.jsx b/client/components/App.jsx index 99c2c11..046ce72 100644 --- a/client/components/App.jsx +++ b/client/components/App.jsx @@ -1,6 +1,6 @@ import React from 'react' import LoggedOutView from './LoggedOutView.jsx' -import MealView from './MealView.jsx' +import LoggedInView from './LoggedInView.jsx' import client from '../client' @@ -35,7 +35,7 @@ export default class App extends React.Component { if (this.state.ready) { if (this.state.loggedIn) { return ( - <MealView user={this.state.user} /> + <LoggedInView user={this.state.user} /> ) } else { |
