(step)
| 33 | } |
| 34 | |
| 35 | function getStepContent(step) { |
| 36 | switch (step) { |
| 37 | case 0: |
| 38 | return 'Create New Account'; |
| 39 | case 1: |
| 40 | return 'Create User Details'; |
| 41 | case 2: |
| 42 | return 'Business Details'; |
| 43 | case 3: |
| 44 | return 'Social'; |
| 45 | default: |
| 46 | return ''; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | const AddUser = () => { |
| 51 | const [activeStep, setActiveStep] = React.useState(0); |
nothing calls this directly
no outgoing calls
no test coverage detected