Skip to content

Commit

Permalink
Add layout for userArea
Browse files Browse the repository at this point in the history
  • Loading branch information
timia2109 committed Jul 31, 2024
1 parent a34865a commit 1b9c3e1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/app/[locale]/(userArea)/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { NavBar } from "@/components/common/NavBar";
import type { LayoutProps } from "../../../../.next/types/app/layout";

export default function UserLayout({ children }: LayoutProps) {
return (
<div>
<NavBar />
{children}
</div>
);
}

0 comments on commit 1b9c3e1

Please sign in to comment.