import React from 'react'; import Button from '@mui/material/Button'; import Container from '@mui/material/Container'; import {useTheme} from '@mui/material/styles'; import {useTranslation} from 'next-i18next'; interface Props { toggle: () => void; } const AddTravel = (props: Props) => { const {toggle} = props; const {t} = useTranslation(); const theme = useTheme(); return ( ); }; export default AddTravel;