import { StyleSheet, View } from "react-native"; import { ThemedText } from "./themed-text"; interface NotFoundProps { text?: string; } const NotFound = ({text = "Not Found"}: NotFoundProps) => { return ( {text} ) } const styles = StyleSheet.create({ notFound: { padding: 15, textAlign: "center" }, }); export default NotFound;