mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-02 16:53:34 +00:00
14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
import { HasPermission } from "src/components";
|
|
import { ADMIN, VIEW } from "src/modules/Permissions";
|
|
import Layout from "./Layout";
|
|
|
|
const Settings = () => {
|
|
return (
|
|
<HasPermission section={ADMIN} permission={VIEW} pageLoading loadingNoLogo>
|
|
<Layout />
|
|
</HasPermission>
|
|
);
|
|
};
|
|
|
|
export default Settings;
|