mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 04:51:51 +00:00
15 lines
563 B
Plaintext
15 lines
563 B
Plaintext
export const AppliesTo = ({ products = ["Prowler Cloud", "Prowler Private Cloud", "Prowler Local Server"] }) => {
|
|
return (
|
|
<Info>
|
|
This guide applies to{" "}
|
|
{products.map((name, index) => (
|
|
<span key={name}>
|
|
{index > 0 && (index === products.length - 1 ? (products.length > 2 ? ", and " : " and ") : ", ")}
|
|
<b>{name}</b>
|
|
</span>
|
|
))}
|
|
. See <a href="/getting-started/products">Prowler product families</a>.
|
|
</Info>
|
|
);
|
|
};
|