feat(WEB-170): edit profile view
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
export default function Default() {
|
||||
return null
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import { serverClient } from "@/lib/trpc/server"
|
||||
|
||||
import EditProfile from "@/components/MyProfile/Profile/Edit"
|
||||
|
||||
export default async function EditProfileSlot() {
|
||||
const user = await serverClient().user.get()
|
||||
return <EditProfile user={user} />
|
||||
}
|
||||
Reference in New Issue
Block a user