Consider the following React Native code that creates a bott…

Consider the following React Native code that creates a bottom tab navigator using React Navigation… const BudTabs = createBottomTabNavigator();function BadgerBuds() {  return (                                      );} Furthermore, consider the AvailableBuds component… function AvailableBuds() {    const navigation = useNavigation();    const promo = () => {        navigation.navigate(“Basket”, {            code: “CALICOSRCOOL”        })    }    return         Available buds would go here!            } Assuming the button “Use Promo Code” is pressed, how can BasketBuds access the promotion code passed from AvailableBuds?