import { memo } from "react"; import { useTranslation } from "react-i18next"; import { Typography } from "antd"; const EndNode = () => { const { t } = useTranslation(); return (
{t("workflow_node.end.label")}
); }; export default memo(EndNode);