import { StyleSheet } from "react-native"; import React from "react"; import { Button, Dialog, MD3Theme, Portal, useTheme, Text } from "react-native-paper"; import { useNavigation } from "@react-navigation/native"; export default function DeletePopUp(props: {drugId: number, onCancel: () => void, onDelete: () => void}) { const theme = useTheme(); const style = styles(theme); const navigation = useNavigation(); //TODO: types... return ( Delete Drug Are you sure you want to delete this drug? This action can not be reversed ); } const styles = (theme: MD3Theme) => StyleSheet.create({ })