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>
 );