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