import clsx from "clsx"; import { useTunnels } from "../../context/tunnels"; import "./FooterCenter.scss"; import { useUIAppState } from "../../context/ui-appState"; const FooterCenter = ({ children }: { children?: React.ReactNode }) => { const { FooterCenterTunnel } = useTunnels(); const appState = useUIAppState(); return (
{children}
); }; export default FooterCenter; FooterCenter.displayName = "FooterCenter";