import { Typography } from '@mui/material' import React from 'react' import styles from './BackButton.module.css' import { useTranslation } from 'react-i18next' const BackButton = ({ onClick, onChange }) => { const { t } = useTranslation() return ( <> ) } export default BackButton