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