-
- {t("operatingSystem")}
-
-
- {platforms.map((os) => (
-
- ))}
-
-
-
-
-
- {["docker", "podman"].includes(
- platform
- )
- ? t("method")
- : t("architecture")}
-
-
- {getArchitectures().map(
- (arch) => (
-
- )
- )}
-
-
-
- {t("commands")}
-
-
- {getCommand().map(
- (item, index) => {
- const commandText =
- typeof item ===
- "string"
- ? item
- : item.command;
- const title =
- typeof item ===
- "string"
- ? undefined
- : item.title;
-
- return (
-
- {title && (
-
- {
- title
- }
-
- )}
-
-
- );
- }
- )}
-
-
-
-