2025-12-18 17:10:20 +08:00
|
|
|
import {ReactNode, Suspense} from 'react'
|
2025-06-07 11:28:36 +08:00
|
|
|
import {Metadata} from 'next'
|
2025-06-05 16:41:30 +08:00
|
|
|
|
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
|
|
|
return {
|
|
|
|
|
title: '账户总览 - 蓝狐代理',
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type BillsLayoutProps = {
|
|
|
|
|
children: ReactNode
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default async function BillsLayout(props: BillsLayoutProps) {
|
2025-12-18 17:10:20 +08:00
|
|
|
return (
|
|
|
|
|
<Suspense>
|
|
|
|
|
{props.children}
|
|
|
|
|
</Suspense>
|
|
|
|
|
)
|
2025-06-07 11:28:36 +08:00
|
|
|
}
|