import clsx from "clsx"; import { actionShortcuts } from "../../actions"; import { useTunnels } from "../../context/tunnels"; import { ExitZenModeAction, UndoRedoActions, ZoomActions } from "../Actions"; import { HelpButton } from "../HelpButton"; import { Section } from "../Section"; import Stack from "../Stack"; import type { ActionManager } from "../../actions/manager"; import type { UIAppState } from "../../types"; const Footer = ({ appState, actionManager, showExitZenModeBtn, renderWelcomeScreen, }: { appState: UIAppState; actionManager: ActionManager; showExitZenModeBtn: boolean; renderWelcomeScreen: boolean; }) => { const { FooterCenterTunnel, WelcomeScreenHelpHintTunnel } = useTunnels(); return ( ); }; export default Footer; Footer.displayName = "Footer";