mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-08 17:32:27 +08:00
26 lines
541 B
TypeScript
26 lines
541 B
TypeScript
import { getLocaleOnServer } from '@/i18n/server'
|
|
|
|
import './styles/globals.css'
|
|
import './styles/markdown.scss'
|
|
|
|
const LocaleLayout = ({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) => {
|
|
const locale = getLocaleOnServer()
|
|
return (
|
|
<html lang={locale ?? 'en'} className="h-full">
|
|
<body className="h-full">
|
|
<div className="overflow-x-auto">
|
|
<div className="w-screen h-screen min-w-[300px]">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
|
|
export default LocaleLayout
|