2025-03-18 11:33:14 +00:00
|
|
|
import { Suspense } from "react";
|
|
|
|
import { Loading } from "@/components/loading";
|
2025-03-18 03:01:35 +00:00
|
|
|
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 />
|
2025-03-18 11:33:14 +00:00
|
|
|
<Suspense fallback={<Loading />}>
|
|
|
|
{children}
|
|
|
|
</Suspense>
|
2025-03-18 03:01:35 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|