Skip to content

Commit

Permalink
Merge branch 'main' into updated-Registration
Browse files Browse the repository at this point in the history
  • Loading branch information
samnotfound404 authored Jul 11, 2024
2 parents b5bdce8 + 4f81c1d commit 95ed5e3
Show file tree
Hide file tree
Showing 15 changed files with 2,693 additions and 188 deletions.
9 changes: 9 additions & 0 deletions src/app/(routes)/admin/jobs/[jobId]/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
interface Props {
children: React.ReactNode;
}

const AdminJobLayout = ({ children }: Props) => {
return <div className="mx-2 my-4 py-4 rounded-md bg-white">{children}</div>;
};

export default AdminJobLayout;
Loading

0 comments on commit 95ed5e3

Please sign in to comment.