From 52430ef8d57c37488664cdb825dfe943682b128a Mon Sep 17 00:00:00 2001 From: Connor Turland Date: Sat, 10 Mar 2018 22:34:49 -0500 Subject: [PATCH] fill in empty files with placeholder --- src/routes/Apps/Authorized.js | 11 +++++++++++ src/routes/Apps/ShowAuthorization.js | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/src/routes/Apps/Authorized.js b/src/routes/Apps/Authorized.js index e69de29b..29da4239 100644 --- a/src/routes/Apps/Authorized.js +++ b/src/routes/Apps/Authorized.js @@ -0,0 +1,11 @@ +import React, { Component } from 'react' + +class Authorized extends Component { + render = () => { + return ( + null + ) + } +} + +export default Authorized \ No newline at end of file diff --git a/src/routes/Apps/ShowAuthorization.js b/src/routes/Apps/ShowAuthorization.js index e69de29b..1f78194a 100644 --- a/src/routes/Apps/ShowAuthorization.js +++ b/src/routes/Apps/ShowAuthorization.js @@ -0,0 +1,11 @@ +import React, { Component } from 'react' + +class ShowAuthorizaton extends Component { + render = () => { + return ( + null + ) + } +} + +export default ShowAuthorizaton \ No newline at end of file