Files
web/src/app/admin/whitelist/layout.tsx
2025-06-05 17:10:44 +08:00

17 lines
353 B
TypeScript

import { ReactNode } from 'react'
import { Metadata } from 'next'
export async function generateMetadata(): Promise<Metadata> {
return {
title: '白名单 - 蓝狐代理',
}
}
export type WhitelistLayoutProps = {
children: ReactNode
}
export default async function WhitelistLayout(props: WhitelistLayoutProps) {
return props.children
}