UNPKG

gd-sprest-bs

Version:

SharePoint JavaScript, TypeScript and Web Components designed using the Bootstrap framework.

12 lines (11 loc) 333 B
import { WPList } from "../list"; import { WPListFieldsEditForm } from "./wpCfg"; /** * List Fields WebPart */ export const WPListFields = (props) => { // Set the edit form props ? props.editForm = WPListFieldsEditForm(props.editForm) : null; // Create the webpart and return it return WPList(props); };