Skip to content

Commit caf3b59

Browse files
authored
Reorder import statements in App.tsx
1 parent facc141 commit caf3b59

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/App.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import Router from './router/Router';
21
import RoomSearch from './pages/SearchRoom/RoomSearch';
2+
import Router from './router/Router';
33

44
const App = () => {
5-
return (
5+
return (
66
<div>
7-
<Router />;
7+
<Router />
88
<RoomSearch />
99
</div>
1010
);

0 commit comments

Comments
 (0)