mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
feat(admin): add language server settings layout
This commit is contained in:
parent
168df31fad
commit
6ec039eeb5
@ -0,0 +1,22 @@
|
||||
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>
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue
Block a user