Skip to content

Commit

Permalink
chore: account/id page layout
Browse files Browse the repository at this point in the history
  • Loading branch information
shawakash committed Mar 27, 2024
1 parent 86a4511 commit 192f3bd
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/web/app/account/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default function Page({ params }: { params: { id: string } }) {
console.log(params)
return <div>From /: {params.id}</div>
}
5 changes: 5 additions & 0 deletions apps/web/app/account/[id]/privatekey/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function Page({ params }: { params: { id: string } }) {
console.log(params);
//TODO: FETCH THE TXN DATA FOR THIS FOR THIS ACCOUNT
return <div>From Private key: {params.id}</div>
}
5 changes: 5 additions & 0 deletions apps/web/app/account/[id]/remove/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function Page({ params }: { params: { id: string } }) {
console.log(params);
//TODO: FETCH THE TXN DATA FOR THIS FOR THIS ACCOUNT
return <div>From remove account: {params.id}</div>
}
5 changes: 5 additions & 0 deletions apps/web/app/account/[id]/secretPhrase/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function Page({ params }: { params: { id: string } }) {
console.log(params);
//TODO: FETCH THE TXN DATA FOR THIS FOR THIS ACCOUNT
return <div>From secret phrase: {params.id}</div>
}
5 changes: 5 additions & 0 deletions apps/web/app/account/[id]/statements/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function Page({ params }: { params: { id: string } }) {
console.log(params);
//TODO: FETCH THE TXN DATA FOR THIS FOR THIS ACCOUNT
return <div>From statements: {params.id}</div>
}
4 changes: 4 additions & 0 deletions apps/web/app/account/[id]/update/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default function Page({ params }: { params: { id: string } }) {
console.log(params)
return <div>My Post: {params.id}</div>
}

0 comments on commit 192f3bd

Please sign in to comment.