import React from 'react'; import { Box, Typography, Stack, Button, useTheme, TextField, Radio, RadioGroup, FormControlLabel, } from '@mui/material'; const Infrastructure = ({ currentStepIndex = 0, onNext, onBack }) => { const theme = useTheme(); return ( Infrastructure & Equipments Enter your basic information to proceed to registration of your own restaurant on this platform {/* Inputs (Restaurant Name, Type, Address, City, Postal Code) */} {[ { label: 'Current Equipment', placeholder: 'oven, refrgerators' }, ].map((field, index) => ( {field.label} ))} Additional Facilities Needed } label="Yes" /> } label="No" /> {/* Description Input */} Description {/* زر Back تحت زر Next */} ); }; export default Infrastructure;