README
3p-core / ListForm
ListForm
Renders a SharePoint list form UI, using a provided IListFormContext.
This component manages field rendering, loading state, and provides form context to its children via React Context.
It is the core container for all field components (e.g., ListForm.Field
) and SharePoint form logic.
Example
<ListForm listFormContext={formContext}>
<ListForm.Field fieldInternalName="Title" />
<ListForm.Field fieldInternalName="Category" />
</ListForm>