12 lines
363 B
TypeScript
12 lines
363 B
TypeScript
|
|
import { ReactNode } from 'react';
|
||
|
|
import { AdminShell } from '@/components/admin/AdminShell';
|
||
|
|
|
||
|
|
export const metadata = {
|
||
|
|
title: { default: '后台管理', template: '%s - 后台管理' },
|
||
|
|
robots: { index: false, follow: false },
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function AdminLayout({ children }: { children: ReactNode }) {
|
||
|
|
return <AdminShell>{children}</AdminShell>;
|
||
|
|
}
|