resetting state after submit (todo: add confirmation message), update posts screen after aprove or deny

This commit is contained in:
Will Baumbach
2025-08-05 10:22:48 -05:00
parent e49674a755
commit 813cb44637
7 changed files with 107 additions and 37 deletions

View File

@@ -1,9 +1,9 @@
import { Stack } from "expo-router";
import { Stack } from 'expo-router'
export default function RootLayout() {
return (
return (
<Stack>
<Stack.Screen name="(tabs)" options={{ headerShown: false }}></Stack.Screen>
<Stack.Screen name='(tabs)' options={{ headerShown: false }}></Stack.Screen>
</Stack>
);
)
}