// Simplified — ET/ETBlock render content only.

function ET({ path, children, as: Tag = 'span', style, ...rest }) {
  return <Tag style={style} {...rest}>{children}</Tag>;
}

function ETBlock({ path, children, as: Tag = 'p', style, ...rest }) {
  return <Tag style={style} {...rest}>{children}</Tag>;
}

function ContentEditPanel() { return null; }
function ETEditToggle()     { return null; }

Object.assign(window, { ET, ETBlock, ContentEditPanel, ETEditToggle });
