Entony пре 6 година
родитељ
комит
721a4f5e43
1 измењених фајлова са 2 додато и 4 уклоњено
  1. 2 4
      src/router.js

+ 2 - 4
src/router.js

@@ -5,9 +5,7 @@ import FetchPage from "./container/fetchPage";
 
 export default () => (
 	<Switch>
-		<div>
-			<Route path="/" exact component={App} />
-			<Route exact path="/fetch" component={FetchPage} />
-		</div>
+		<Route path="/" exact component={App} />
+		<Route exact path="/fetch" component={FetchPage} />
 	</Switch>
 );