Skip to content

Commit

Permalink
[Account Routes] add routes for Account
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeesun Kim authored and Jeesun Kim committed Mar 5, 2024
1 parent a97a399 commit 4fa7272
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/app/(sidebar)/account/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ export default function AccountTemplate({
route: Routes.FUND_ACCOUNT,
label: "Fund Account",
},
{
route: Routes.CREATE_MUXED_ACCOUNT,
label: "Create Muxed Account",
},
{
route: Routes.PARSE_MUXED_ACCOUNT,
label: "Parse Muxed Account",
},
],
}}
>
Expand Down
5 changes: 5 additions & 0 deletions src/app/(sidebar)/account/muxed-create/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"use client";

export default function CreateMuxedAccount() {
return <div>Create Muxed Account</div>;
}
5 changes: 5 additions & 0 deletions src/app/(sidebar)/account/muxed-parse/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"use client";

export default function ParseMuxedAccount() {
return <div>Parse Muxed Account</div>;
}

0 comments on commit 4fa7272

Please sign in to comment.