import { EventCollector } from "@shared/eventCollector"; import { ArrowLeftIcon, ArrowRightIcon } from "@shared/icons"; export function AppHeader() { const goBack = () => { window.history.back(); }; const goForward = () => { window.history.forward(); }; return (
); }