Preview: WorkingProcessSection.jsx
Size: 693 B
//proc/thread-self/root/home/byroehnu/easetack.com/resources/js/Frontend/Components/Sections/WorkingProcessSection.jsx
import WorkingProcess1 from "../WorkingProgress/WorkingProcess1"
import WorkingProcess2 from "../WorkingProgress/WorkingProcess2"
import WorkingProcess3 from "../WorkingProgress/WorkingProcess3"
export default function WorkingProcessSection({ sections_data }) {
const sectionLayout = sections_data?.layout ?? "1"
let layoutSection = ""
if (sectionLayout === "1") {
layoutSection = <WorkingProcess1 data={sections_data} />
} else if (sectionLayout === "2") {
layoutSection = <WorkingProcess2 data={sections_data} />
} else if (sectionLayout === "3") {
layoutSection = <WorkingProcess3 data={sections_data} />
}
return <>{layoutSection}</>
}
Directory Contents
Dirs: 0 × Files: 31