Files
hipmi-mobile/app/(application)/profile/update-photo/[id].tsx
Bagasbanuna02 258e20751e feature profile
deskripsi:
- drawer & alert
- screen baru: edit profile, update photo, update background, create portofolio
2025-07-01 17:47:51 +08:00

12 lines
270 B
TypeScript

import { Text, View } from "react-native";
import { useLocalSearchParams } from "expo-router";
export default function UpdatePhotoProfile() {
const { id } = useLocalSearchParams();
return (
<View>
<Text>Update Photo Profile {id}</Text>
</View>
);
}