import React from 'react'; import { Box, Typography, Stack, Button, useTheme, TextField, Radio, RadioGroup, FormControlLabel, } from '@mui/material'; const Facilitation = ({ currentStepIndex = 0, onNext, onBack }) => { const theme = useTheme(); return ( Facilitation & Cooperation Enter your basic information to proceed to registration of your own restaurant on this platform Additional Services Provided } label="Yes" /> } label="No" /> {/* Additional Services Input */} Additional Services Ventilation and Cooling System } label="Yes" /> } label="No" /> {/* Inputs (Restaurant Name, Type, Address, City, Postal Code) */} {[ { label: 'Working Hours', placeholder: '8 hours' }, ].map((field, index) => ( {field.label} ))} {/* زر Back تحت زر Next */} ); }; export default Facilitation;