import React, {Suspense} from "react" import {Form, FormProps} from "__coreComponentsImportPath__/Form" import {LabeledTextField} from "__coreComponentsImportPath__/LabeledTextField" import {z} from "zod" export {FORM_ERROR} from "__coreComponentsImportPath__/Form" export function __ModelName__Form>(props: FormProps) { return ( {...props}> {/* template: <__component__ name="__fieldName__" label="__Field_Name__" placeholder="__Field_Name__" type="__inputType__" /> */} ) }