mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
"use client";
|
|
|
|
import { ReactNode } from "react";
|
|
// layouts
|
|
import { AdminLayout } from "@/layouts/admin-layout";
|
|
|
|
export default function AuthenticationLayout({ children }: { children: ReactNode }) {
|
|
return <AdminLayout>{children}</AdminLayout>;
|
|
}
|