Files
nginx-proxy-manager/frontend/src/components/Table/Formatter/CertificateFormatter.tsx
2025-10-02 23:06:51 +10:00

10 lines
261 B
TypeScript

import type { Certificate } from "src/api/backend";
import { T } from "src/locale";
interface Props {
certificate?: Certificate;
}
export function CertificateFormatter({ certificate }: Props) {
return <T id={certificate ? "lets-encrypt" : "http-only"} />;
}