Add error handling and notes page.

This commit is contained in:
Patrick Fic
2025-10-15 15:46:28 -07:00
parent 8d60d9776c
commit 934e832b51
11 changed files with 329 additions and 94 deletions

View File

@@ -1,10 +1,5 @@
import { Text, View } from "react-native";
import JobNotes from "../../../components/job-notes/job-notes";
function Notes() {
return (
<View>
<Text>Notes</Text>
</View>
);
return <JobNotes />;
}
export default Notes;