diff --git a/README.md b/README.md index f9db158..8e55ff5 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ Free meal planner for cooks short on ideas! (like me …) - Get a full menu (Starter, Main, Dessert + Cocktail) - Send a daily suggestion to newsletter - History +- Language selection ## Supports @@ -93,9 +94,7 @@ Free meal planner for cooks short on ideas! (like me …) ## TO DO - add sidenav on mobile -- accounts v2 (profile page) - send message after contact form validation (confirm to sender and msg+info to admin) - code cleanup (props and refactoring) -- put a preloader - Back to top button - Take a look at some components [here](http://react-materialize.github.io/react-materialize/?path=/story/css-grid--default) diff --git a/src/App.js b/src/App.js index bb699d9..e86fe52 100644 --- a/src/App.js +++ b/src/App.js @@ -17,6 +17,7 @@ import { getData } from "./utils/methods"; import history from "./utils/history"; import { Profile } from "./pages/Profile"; import { PrivateRoute } from "./components/PrivateRoute"; +import { PreLoader } from "./components/PreLoader"; export const App = () => { const { loading } = useAuth0(); @@ -109,7 +110,9 @@ export const App = () => { const buttonUrl = "/random"; return loading ? ( -
{user.email}
-{JSON.stringify(user, null, 2)}
+ + Email: + {user.email} +
+ {/*{JSON.stringify(user, null, 2)} */}