diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-08-11 14:48:42 +0300 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:05:37 +0200 |
| commit | d7512ace72448242b392299cf459c9c72c8dbee5 (patch) | |
| tree | 37ce113d5d47440139bfe357e9ad547063cd44f7 /src/pages/Home.js | |
| parent | 737ce62470a13ae153788207719396e107252955 (diff) | |
Get Google authentication flow working
Diffstat (limited to 'src/pages/Home.js')
| -rw-r--r-- | src/pages/Home.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pages/Home.js b/src/pages/Home.js new file mode 100644 index 00000000..bd32d0d9 --- /dev/null +++ b/src/pages/Home.js @@ -0,0 +1,8 @@ +import React from 'react'; +import Login from "../containers/auth/Login"; + +const Index = () => ( + <Login visible={true}/> +); + +export default Index; |
