Add job tabs.

This commit is contained in:
Patrick Fic
2025-10-08 14:09:09 -07:00
parent 820da94a9f
commit 00626328c4
8 changed files with 275 additions and 1 deletions

View File

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