Code QuizIntermediate

Creating a Bottom Tab Navigator

Find why the bottom tab navigator fails to build.

Codejavascript
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';

const Tab = createBottomTabNavigator();

function App() {
  return (
    <NavigationContainer>
      <Tab.Screen name="Home" component={HomeScreen} />
      <Tab.Screen name="Settings" component={SettingsScreen} />
    </NavigationContainer>
  );
}

What is the bug in this code?