Skip to content

Commit

Permalink
Add example page
Browse files Browse the repository at this point in the history
  • Loading branch information
timia2109 committed Jul 31, 2024
1 parent 1b9c3e1 commit 2aa77fd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/app/[locale]/(userArea)/mealPlan/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { getUserId } from "@/functions/user/getUserId";

export default async function UserPage() {
const user = await getUserId();

return (
<h1>
Your userid is <strong>{user}</strong>
</h1>
);
}

0 comments on commit 2aa77fd

Please sign in to comment.