upd: edit profile
Deskripsi: - routing edit profile - view awal edit profile No Issues
This commit is contained in:
9
src/app/(application)/profile/edit/page.tsx
Normal file
9
src/app/(application)/profile/edit/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import { ViewEditProfile } from "@/module/user"
|
||||||
|
|
||||||
|
function Page() {
|
||||||
|
return (
|
||||||
|
<ViewEditProfile />
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Page
|
||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import ViewEditProfile from "./profile/view/view_edit_profile";
|
||||||
import ViewProfile from "./profile/view/view_profile";
|
import ViewProfile from "./profile/view/view_profile";
|
||||||
|
|
||||||
export { ViewProfile }
|
export { ViewProfile }
|
||||||
|
export { ViewEditProfile }
|
||||||
9
src/module/user/profile/view/view_edit_profile.tsx
Normal file
9
src/module/user/profile/view/view_edit_profile.tsx
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import { Box } from "@mantine/core";
|
||||||
|
|
||||||
|
export default function ViewEditProfile() {
|
||||||
|
return (
|
||||||
|
<Box>
|
||||||
|
Edit profile
|
||||||
|
</Box>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user