From d02425dd1f09b5f47359ef67edeea5e402a81abc Mon Sep 17 00:00:00 2001 From: Odafe Aror Date: Fri, 17 Nov 2023 15:20:53 +0000 Subject: [PATCH] new file --- .../nextjs/src/app/dapp/profile/[username]/edit/page.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 frontend/nextjs/src/app/dapp/profile/[username]/edit/page.tsx diff --git a/frontend/nextjs/src/app/dapp/profile/[username]/edit/page.tsx b/frontend/nextjs/src/app/dapp/profile/[username]/edit/page.tsx new file mode 100644 index 0000000..5d6139e --- /dev/null +++ b/frontend/nextjs/src/app/dapp/profile/[username]/edit/page.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +const EditProfile = () => { + return ( +
EditProfile
+ ) +} + +export default EditProfile \ No newline at end of file