Preview: TextEditorSection.jsx
Size: 312 B
//proc/thread-self/root/home/byroehnu/easetack.com/resources/js/Frontend/Components/Sections/TextEditorSection.jsx
import TextEditor from "../TextEditor/TextEditor"
export default function TextEditorSection({ sections_data }) {
const sectionLayout = sections_data?.layout ?? "1"
let section = ""
if (sectionLayout === "1") {
section = <TextEditor data={sections_data} />
}
return <>{section}</>
}
Directory Contents
Dirs: 0 × Files: 31