mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
- 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
14 lines
264 B
TypeScript
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
|
|
}
|