import { IonButton, IonIcon, useIonRouter } from '@ionic/react'; import { arrowBack } from 'ionicons/icons'; import { LESSON_LINK, VERSIONS } from '../../constants'; import SettingSvg from './image.svg'; import { Paths } from '../../Paths'; interface ContainerProps { name: string; } const SettingContainer: React.FC = ({ name }) => { const router = useIonRouter(); function handleAuthHomeClick() { router.push(Paths.AuthHome); } return (

T.B.A.

{VERSIONS}
AuthHome { router.push(LESSON_LINK, undefined, 'replace'); }} style={{ marginTop: '1rem' }} > Back
); }; export default SettingContainer;