From 2de94601cb2d932eb44f1ea9cfb411b2e10f9c81 Mon Sep 17 00:00:00 2001 From: Mark Zheleznyakov Date: Thu, 27 Nov 2025 12:13:12 +0300 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20=D0=A3=D0=B4=D0=B0=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20index.tsx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/frontend/app/index.tsx | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 apps/frontend/app/index.tsx diff --git a/apps/frontend/app/index.tsx b/apps/frontend/app/index.tsx deleted file mode 100644 index bf6384f..0000000 --- a/apps/frontend/app/index.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { FC, useEffect } from "react"; -import { Text } from "react-native"; -import { SafeAreaView } from "react-native-safe-area-context"; -import { StatusBar } from "expo-status-bar"; - -const Page: FC = () => { - useEffect(() => { - fetch(`${process.env.EXPO_PUBLIC_API_BASE_URL}/`).then(r => r.text()).then(console.log) - }, []) - - return ( - - - - Welcome to p1ctos4ve! - - - ); -}; - -export default Page;