import { FC, useState } from "react"; import Iframe from "react-iframe"; type ZammadWrapperProps = { url: string; hideSidebar?: boolean; }; export const ZammadWrapper: FC = ({ url, hideSidebar = true, }) => { const [display, setDisplay] = useState("inherit"); return (