Skip to content

Commit 25f720c

Browse files
committed
chore: root 라우팅 수정
1 parent 04030ec commit 25f720c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/App.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@ const App = () => {
2020
<Navigation />
2121
</Container>
2222
<Switch>
23-
<Route exact path="/" component={TextList} />
2423
<Route path="/text-list" component={TextList} />
2524
<Route path="/image-list" component={ImageList} />
2625
<Route path="/text-list-virtualized" component={TextListVirtualized} />
2726
<Route path="/image-list-virtualized" component={ImageListVirtualized} />
28-
<Redirect to="/" />
27+
<Redirect to="/text-list-virtualized" />
2928
</Switch>
3029
</Router>
3130
</Container>

0 commit comments

Comments
 (0)