# Third Party Components

You can create your own components, add these components and associated properties forms to a micro app and then configure this micro app on the team or site level.

:point\_right: **Page designer does not require registering the built-in or custom components under 'Site Builder -> Components' UI.**

### **Guidelines for creating own components**

* Each third component must have an associated properties editor component as well if the component is having any editable property. Properties editor component name MUST be in the `<component_name>Props.vue`format. Example - <https://github.com/mechcloud/mechcloud-demo-microapp1/tree/main/src/components/generic/rktH2>.
* Have a look at different components available under <https://github.com/mechcloud/mechcloud-demo-microapp1/tree/main/src/components/generic> folder for sample demo components. You can use these to write your own components.
* Make sure all of your components are having a unique prefix (**mc**, **rkt** and **demo** are reserved prefixes).
* If it is not possible to have unique prefix for your (existing) components then you can put the prefix while exporting a component in the micro app -

```
export { default as DemoCmpnt1 } from './Cmpnt1.vue'
```

* Keep all your own components under a dedicated folder (e.g. **internal**) which should be a child of <https://github.com/mechcloud/mechcloud-demo-microapp1/tree/main/src/components> folder.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.mechcloud.io/dashboard-builder/page-designer/single-component-prompts/third-party-components.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
