forked from github/plane
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>;
|
|
}
|