mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 15:26:33 +00:00
23 lines
599 B
TypeScript
23 lines
599 B
TypeScript
|
import { Separator } from "@/components/ui/separator";
|
||
|
|
||
|
interface SettingsLanguageServerLayoutProps {
|
||
|
children: React.ReactNode;
|
||
|
}
|
||
|
|
||
|
export default function SettingsLanguageServerLayout({
|
||
|
children,
|
||
|
}: SettingsLanguageServerLayoutProps) {
|
||
|
return (
|
||
|
<div className="container mx-auto max-w-[1024px] space-y-6">
|
||
|
<div>
|
||
|
<h3 className="text-lg font-medium">Language Server Settings</h3>
|
||
|
<p className="text-sm text-muted-foreground">
|
||
|
Configure the language server connection settings.
|
||
|
</p>
|
||
|
</div>
|
||
|
<Separator />
|
||
|
{children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|