import * as React from "react"; interface EditorSectionProps { } /** * The version of the page section that shows up while in EDIT mode -- Properties Used > Background, Padding, Inner Width */ const EditorSection:React.FC = ({ children }) => { return
{children}
; } export default EditorSection;