17 lines
520 B
TypeScript
17 lines
520 B
TypeScript
// Path: Frontend/src/routes/settings/server.tsx
|
|
|
|
import { type JSX } from "solid-js";
|
|
import { SettingsDetailPage } from "../../components/settings/SettingsDetailPage/SettingsDetailPage";
|
|
|
|
const SettingsServerRoute = (): JSX.Element => {
|
|
return (
|
|
<SettingsDetailPage
|
|
title="Server Settings"
|
|
description="Manage server-wide controls, identity, and policy defaults that apply across workspaces."
|
|
focus={["Server identity", "Policies", "Operational defaults"]}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default SettingsServerRoute;
|