feat(crawler): fix async crawling

This commit is contained in:
2025-11-09 01:01:07 +02:00
parent e8c0f0422b
commit 2b5482e9f5
58 changed files with 243 additions and 169 deletions
+5
View File
@@ -0,0 +1,5 @@
import { Stack } from "expo-router";
export default function RootLayout() {
return <Stack />;
}
+15
View File
@@ -0,0 +1,15 @@
import { Text, View } from "react-native";
export default function Index() {
return (
<View
style={{
alignItems: "center",
flex: 1,
justifyContent: "center",
}}
>
<Text>Edit app/index.tsx to edit this screen.</Text>
</View>
);
}