Files
web/src/app/admin/(dashboard)/layout.tsx
Eamon-meng b3cd22e1cf .hand
2025-06-07 11:28:36 +08:00

17 lines
338 B
TypeScript

import {ReactNode} from 'react'
import {Metadata} from 'next'
export async function generateMetadata(): Promise<Metadata> {
return {
title: '账户总览 - 蓝狐代理',
}
}
export type BillsLayoutProps = {
children: ReactNode
}
export default async function BillsLayout(props: BillsLayoutProps) {
return props.children
}