Files
aerbim-ht-monitor/frontend/app/(auth)/layout.tsx
Timofey Syrokvashko 65a63235e5 feat / AEB-26 login page
2025-09-01 11:34:30 +03:00

13 lines
206 B
TypeScript

'use client'
import { Toaster } from 'react-hot-toast'
export default function AuthLayout({ children }: { children: React.ReactNode }) {
return (
<>
<Toaster />
{children}
</>
)
}