I'm currently teaching myself how to use a headless CMS (CrafterCMS) with Next.js.
I have the following simple content type in CrafterCMS studio (just a title and a text):

And the respective code:
export default async function TestPage() {
const model = await getModel('/site/website/test/index.xml');
return (
<TestComponent model={model} />
);
}
export default function TestComponent(props) {
const { isAuthoring } = useCrafterAppContext();
const { model } = props;
return (
<ExperienceBuilder path={model.craftercms.path} isAuthoring={isAuthoring}>
<Model model={model} >
<div className="space-y-4">
<RenderField
model={model}
fieldId="title_s"
className="text-xl text-gray-800"
/>
<RenderField
model={model}
fieldId="text_t"
className="text-xl text-gray-800"
/>
</div>
</Model>
</ExperienceBuilder>
);
}
Is it possible to use Studio functionality to drag and change the positions of my two fields? For example I want to drag the text to be the first element. It seems that i only have the option to change the content, dragging is not available:
