import * as React from "react"; interface LiveSectionProps { /** * TODO: Add a description */ mode?: EditorMode /** * TODO: Add a description */ children: React.ReactNode /** * TODO: Add a description */ style?: React.CSSProperties /** * TODO: Add a description */ properties?: React.CSSProperties } /** * The version of the page section that shows up while in LIVE mode */ const LiveSection:React.FC = ({ children }) => { return
{children}
; } export default LiveSection;