import { Box, Button } from '@mui/material'; import { useTranslation } from 'next-i18next'; import { FC } from 'react'; interface Props { handleBackToCart: () => void; handleStripePayment: () => void; } const ButtonGroup: FC = ({ handleBackToCart, handleStripePayment }) => { const { t } = useTranslation('shipping'); return ( ); }; export default ButtonGroup;