import React from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import Box from '@mui/material/Box'; import Stepper from '@mui/material/Stepper'; import Step from '@mui/material/Step'; import StepLabel from '@mui/material/StepLabel'; const steps = [ 'Select master blaster campaign settings', 'Create an ad group', 'Create an ad', ]; export default function AlternativeLabel() { return ( <> Alternative Label {steps.map((label) => ( {label} ))} ); }