Skip to content

Commit 0b6d3f2

Browse files
committed
Add core attendance dashboard
1 parent bab14a8 commit 0b6d3f2

11 files changed

Lines changed: 725 additions & 9 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import type { ReactNode } from 'react'
2+
3+
import ApiCodeGuard from '@/components/auth/ApiCodeGuard'
4+
5+
export default function DashboardCoreApplicationLayout({ children }: { children: ReactNode }) {
6+
return (
7+
<ApiCodeGuard requiredRole="LEAD" nextOverride="/dashboard/core/application">
8+
{children}
9+
</ApiCodeGuard>
10+
)
11+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from '../../core-applications/page'

0 commit comments

Comments
 (0)