Register antd Form.Item Sub Component

Hello,
I need to register Form.Item component from antd package but I get an error
Identifier 'Form' has already been declared.
How can I register this Sub Component?

Thanks in advance

It looks like you already have another component with that name, either a code component or plasma component, and these can be either defined in the current project or imported from elsewhere. You can either rename the original or give this registration a different name.

For form items, you can call it something like FormItem.

Let me know if that helps.