Files
imexmobile/components/error/error-display.jsx
2025-10-08 14:09:09 -07:00

10 lines
211 B
JavaScript

import { Text, View } from "react-native";
export default function ErrorDisplay({ errorMessage }) {
return (
<View style={{ backgroundColor: "red" }}>
<Text>{errorMessage}</Text>
</View>
);
}