mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-10-04 03:40:10 +00:00
13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
import { HasPermission } from "src/components";
|
|
import CertificateTable from "./CertificateTable";
|
|
|
|
const Certificates = () => {
|
|
return (
|
|
<HasPermission permission="certificates" type="view" pageLoading loadingNoLogo>
|
|
<CertificateTable />
|
|
</HasPermission>
|
|
);
|
|
};
|
|
|
|
export default Certificates;
|