diff --git a/src/routes/Apps/AppForm.js b/src/routes/Apps/AppForm.js
new file mode 100644
index 00000000..a9ccea74
--- /dev/null
+++ b/src/routes/Apps/AppForm.js
@@ -0,0 +1,11 @@
+import React, { Component } from 'react'
+
+class AppForm extends Component {
+ render = () => {
+ return (
+ null
+ )
+ }
+}
+
+export default AppForm
\ No newline at end of file
diff --git a/src/routes/Apps/Apps.js b/src/routes/Apps/Apps.js
new file mode 100644
index 00000000..6a1755ea
--- /dev/null
+++ b/src/routes/Apps/Apps.js
@@ -0,0 +1,50 @@
+import React, { Component } from 'react'
+import { Link } from 'react-router'
+
+import AppsHeader from './AppsHeader'
+
+class Apps extends Component {
+ render = () => {
+ return (
+
+
+
+
+
Registered Apps
+
+
+
+
+ Name |
+ Redirect URIs |
+ |
+
+
+
+ {this.props.apps.map(app => {
+ return (
+
+ {app.name} |
+ {app.uris} |
+
+
+ |
+
+ )
+ })}
+
+
+
New App
+
+
+
+
+ )
+ }
+}
+
+export default Apps
\ No newline at end of file
diff --git a/src/routes/Apps.js b/src/routes/Apps/AppsHeader.js
similarity index 91%
rename from src/routes/Apps.js
rename to src/routes/Apps/AppsHeader.js
index 8a5f7de7..7c8c41a9 100644
--- a/src/routes/Apps.js
+++ b/src/routes/Apps/AppsHeader.js
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types'
import NavBar from '../components/NavBar'
import NavBarLink from '../components/NavBarLink'
-class Apps extends Component {
+class AppsHeader extends Component {
render = () => {
const { currentUser } = this.props
@@ -21,4 +21,4 @@ class Apps extends Component {
}
}
-export default Apps
+export default AppsHeader
diff --git a/src/routes/Apps/EditApp.js b/src/routes/Apps/EditApp.js
new file mode 100644
index 00000000..df0c2759
--- /dev/null
+++ b/src/routes/Apps/EditApp.js
@@ -0,0 +1,11 @@
+import React, { Component } from 'react'
+
+class EditApp extends Component {
+ render = () => {
+ return (
+ null
+ )
+ }
+}
+
+export default EditApp
\ No newline at end of file
diff --git a/src/routes/Apps/NewApp.js b/src/routes/Apps/NewApp.js
new file mode 100644
index 00000000..d215a9a0
--- /dev/null
+++ b/src/routes/Apps/NewApp.js
@@ -0,0 +1,11 @@
+import React, { Component } from 'react'
+
+class NewApp extends Component {
+ render = () => {
+ return (
+ null
+ )
+ }
+}
+
+export default NewApp
\ No newline at end of file
diff --git a/src/routes/Apps/NewAuthorization.js b/src/routes/Apps/NewAuthorization.js
new file mode 100644
index 00000000..ad6b95f6
--- /dev/null
+++ b/src/routes/Apps/NewAuthorization.js
@@ -0,0 +1,47 @@
+import React, { Component } from 'react'
+
+class NewAuthorization extends Component {
+ render = () => {
+ return (
+
+
+
+ Authorization required
+
+
+
+ Authorize Test to use your account?
+
+
+
+
+
+ )
+ }
+}
+
+export default NewAuthorization
\ No newline at end of file
diff --git a/src/routes/Apps/ShowApp.js b/src/routes/Apps/ShowApp.js
new file mode 100644
index 00000000..e29768b5
--- /dev/null
+++ b/src/routes/Apps/ShowApp.js
@@ -0,0 +1,11 @@
+import React, { Component } from 'react'
+
+class App extends Component {
+ render = () => {
+ return (
+
+ )
+ }
+}
+
+export default App
\ No newline at end of file
diff --git a/src/routes/makeRoutes.js b/src/routes/makeRoutes.js
index 4466a950..afca29bf 100644
--- a/src/routes/makeRoutes.js
+++ b/src/routes/makeRoutes.js
@@ -1,7 +1,14 @@
import React from 'react'
import { Route, IndexRoute, Redirect } from 'react-router'
import App from './App'
-import Apps from './Apps'
+import Apps from './Apps/Apps'
+import ShowApp from './Apps/ShowApp'
+import NewApp from './Apps/NewApp'
+import EditApp from './Apps/EditApp'
+import Authorizations from './Apps/Authorizations'
+import NewAuthorization from './Apps/NewAuthorization'
+import ShowAuthorization from './Apps/ShowAuthorization'
+import Authorized from './Apps/Authorized'
import Maps from './Maps'
import MapView from './MapView'
import Metacodes from './Admin/Metacodes'
@@ -70,18 +77,17 @@ export default function makeRoutes (currentUser) {
-
-
+
+
-
-
+
-
-
-
+
+
+