import React from "react"; import { StyleSheet, Text, View, Alert } from "react-native"; import { BottomAppContainer, BottomAppButton } from "bottom-app-bar"; export default function App() { return ( I'm an App! Alert.alert("Cars click")} /> Alert.alert("Buses click")} /> Alert.alert("Trains click")} /> Alert.alert("Ships click")} /> ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "#fff", alignItems: "center", justifyContent: "center" } });