Files
xingrin/frontend/app/layout.tsx
yyhuni 6caf707072 refactor: replace Chinese comments with English in frontend components
- Replace all Chinese inline comments with English equivalents across 24 frontend component files
- Update JSDoc comments to use English for better code documentation
- Improve code readability and maintainability for international development team
- Standardize comment style across directories, endpoints, ip-addresses, subdomains, and websites components
- Ensure consistency with previous frontend refactoring efforts
2025-12-29 23:01:16 +08:00

14 lines
264 B
TypeScript

import type React from "react"
/**
* Root layout component
* This is the outermost layout, actual content is handled by [locale]/layout.tsx
*/
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return children
}