Files
aerbim-ht-monitor/frontend/app/(protected)/layout.tsx

16 lines
293 B
TypeScript

import React from 'react'
import AuthGuard from '@/components/auth/AuthGuard'
export default function ProtectedLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<AuthGuard>
<div className="protected-layout">
{children}
</div>
</AuthGuard>
)
}