import ArrowLeftIcon from "@icons/arrowLeft"; import ArrowRightIcon from "@icons/arrowRight"; import RefreshIcon from "@icons/refresh"; export default function AppHeader() { const goBack = () => { window.history.back(); }; const goForward = () => { window.history.forward(); }; const reload = () => { window.location.reload(); }; return (
); }