import React from 'react' import { Link } from 'react-router-dom' import { useFormEditorActions } from '../context/FormEditorActionsContext' /** * Vollseiten-Editor: Zurück/Titel oben; FormActionBar fix unten (alle Viewports via FormEditorBottomSlot). */ export default function PageFormEditorChrome({ title, backTo, backLabel = 'Zurück', actionConfig, children, testId, }) { useFormEditorActions(actionConfig) return (
{backTo ? ( ← {backLabel} ) : null}

{title}

{children}
) }