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