import React from 'react'; import { Box, Typography, Stack, Button, useTheme, TextField, MenuItem } from '@mui/material'; const OperationalDetails = ({ currentStepIndex = 0, onNext, onBack }) => { const theme = useTheme(); const countries = [ { code: 'US', name: 'United States' }, { code: 'GB', name: 'United Kingdom' }, { code: 'FR', name: 'France' }, { code: 'DE', name: 'Germany' }, { code: 'SA', name: 'Saudi Arabia' }, { code: 'EG', name: 'Egypt' }, { code: 'AE', name: 'United Arab Emirates' }, // أضف المزيد حسب الحاجة ]; const handleNext = () => { if (onNext) { onNext(); } }; return ( Operational Details Enter your basic information to proceed to registration of your own restaurant on this platform {/* Staff MembersInput */} Staff Members {/* Country Selector */} Country {countries.map((country) => ( {country.name} ))} {/* Expansion Plan Cities MembersInput */} Expansion Plan Cities {/* Next Button */} {/* زر Back تحت زر Next */} ); }; export default OperationalDetails;