deskripsi: - drawer & alert - screen baru: edit profile, update photo, update background, create portofolio
12 lines
270 B
TypeScript
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>
|
|
);
|
|
}
|