From ca90a246107e3ff2e7a179b9ccc0883da5192a6d Mon Sep 17 00:00:00 2001
From: Luis Felipe Risch <lfr20@inf.ufpr.br>
Date: Wed, 30 Sep 2020 12:33:14 -0300
Subject: [PATCH] Create new route, the Admin router

---
 src/Pages/Home.js | 46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/src/Pages/Home.js b/src/Pages/Home.js
index 2ad839ba..9e1ed689 100755
--- a/src/Pages/Home.js
+++ b/src/Pages/Home.js
@@ -16,37 +16,37 @@ GNU Affero General Public License for more details.
 You should have received a copy of the GNU Affero General Public License
 along with Plataforma Integrada MEC.  If not, see <http://www.gnu.org/licenses/>.*/
 
-import React, {Component} from 'react';
+import React, { Component } from 'react';
 import './Styles/Home.css';
 import SearchSection from '../Components/SearchSection';
 import SubPages from '../Components/AreasSubPages';
 import StatsBar from '../Components/StatsBar';
 import Funcionalities from '../Components/Funcionalities';
 class App extends Component {
-  constructor(props){
-    super(props);
-    this.state={
-      bannerState: "Recursos"
-    };
-    this.changeBanner = this.changeBanner.bind(this)
-  }
-
-  changeBanner(parameter){
-    this.setState({
-      bannerState: parameter
-    });
-  }
+    constructor(props) {
+        super(props);
+        this.state = {
+            bannerState: "Recursos"
+        };
+        this.changeBanner = this.changeBanner.bind(this)
+    }
+
+    changeBanner(parameter) {
+        this.setState({
+            bannerState: parameter
+        });
+    }
 
     render() {
-      return (
-        <React.Fragment>
-          <SearchSection function={this.changeBanner} banner={this.state.bannerState}/>
-          <SubPages banner={this.state.bannerState}/>
-          <StatsBar/>
-          <Funcionalities/>
-        </React.Fragment>
-      );
+        return (
+            <React.Fragment>
+                <SearchSection function={this.changeBanner} banner={this.state.bannerState} />
+                <SubPages banner={this.state.bannerState} />
+                <StatsBar />
+                <Funcionalities />
+            </React.Fragment>
+        );
     }
-  }
+}
 
 export default App;
-- 
GitLab