feat : update profile

This commit is contained in:
lukman
2024-08-28 14:32:00 +08:00
parent 0d16adbd2f
commit d88e42e8a8
17 changed files with 660 additions and 179 deletions

View File

@@ -1,8 +1,8 @@
import { ViewEditProfile } from "@/module/user"
import { EditProfile } from "@/module/user"
function Page() {
return (
<ViewEditProfile />
<EditProfile />
)
}

View File

@@ -1,8 +1,8 @@
import { ViewProfile } from "@/module/user";
import { Profile } from "@/module/user";
function Page() {
return (
<ViewProfile />
<Profile />
)
}