You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
424 B
16 lines
424 B
import {SafeAreaView, Text, View} from "react-native";
|
|
import React from "react";
|
|
import Error, {ProblemProps} from "@/app/(utility)/Error";
|
|
import NotFound from "@/components/error/NotFoundProblem";
|
|
import {NOT_FOUND} from "@/components/Errors";
|
|
|
|
export default function HelpsScreen() {
|
|
return (
|
|
<SafeAreaView>
|
|
<View>
|
|
<NotFound/>
|
|
</View>
|
|
</SafeAreaView>
|
|
|
|
);
|
|
} |