deksripsi:
- merapikan folder profile
- Issu: Drawer
This commit is contained in:
2025-07-02 11:43:22 +08:00
parent 258e20751e
commit 8fb37db0db
15 changed files with 160 additions and 58 deletions

View File

@@ -0,0 +1,11 @@
import { Text, View } from "react-native";
import { useLocalSearchParams } from "expo-router";
export default function UpdatePhotoBackground() {
const { id } = useLocalSearchParams();
return (
<View>
<Text>Update Photo Background {id}</Text>
</View>
)
}