Skip to content

Commit 3875822

Browse files
Removed unused component importing
Importing of TabBarBottom removed because it is not used in the example
1 parent eac670a commit 3875822

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tab-based-navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class SettingsScreen extends React.Component {
136136
Usually tabs don't just display one screen — for example, on your Twitter feed, you can tap on a tweet and it brings you to a new screen within that tab with all of the replies. You can think of this as there being separate navigation stacks within each tab, and that's exactly how we will model it in React Navigation.
137137

138138
```js
139-
import { TabNavigator, TabBarBottom, StackNavigator } from 'react-navigation';
139+
import { TabNavigator, StackNavigator } from 'react-navigation';
140140

141141
class DetailsScreen extends React.Component {
142142
render() {

0 commit comments

Comments
 (0)