frontPanel/src/pages/startPage/switchStepPages.tsx

20 lines
470 B
TypeScript
Raw Normal View History

2023-03-03 20:07:19 +00:00
import * as React from 'react';
import StepOne from "./stepOne";
import Steptwo from "./steptwo";
import StartPageSettings from "./StartPageSettings";
const step = '1';
export default function SwitchStepPages(step: any) {
switch (step) {
case '1':
return (<StepOne/>);
break;
case '2':
return (<Steptwo/>);
break
case '3':
return (<StartPageSettings/>);
break;
}
}