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

T.B.A.

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