import { Component, createEffect, createSignal } from 'solid-js'; import { IconButton } from '@suid/material'; import ArrowBackIcon from '@suid/icons-material/ArrowBack'; import ArrowForwardIcon from '@suid/icons-material/ArrowForward'; import styles from './BackForward.module.css'; export const Back: Component = () => { const onClickHandler = (event: any) => { window.history.back(); }; return ( ); }; export const Forward: Component = () => { const onClickHandler = (event: any) => { window.history.forward(); }; return ( ); };