import { Card, CardTitle, Gallery, PageSection, Split, SplitItem, Text, TextContent, TextVariants, } from "@patternfly/react-core"; import { DatabaseIcon } from "@patternfly/react-icons"; import { useTranslation } from "react-i18next"; import React from "react"; import { ViewHeader } from "../components/view-header/ViewHeader"; export const UserFederationSection = () => { const { t } = useTranslation("user-federation"); const linkArgs = { title: t("common:learnMore"), href: "http://google.com", }; return ( <> {t("userFederationExplanation")} {t("getStarted")} {t("providers")}
{t("addKerberos")} {t("addLdap")}
); };