diff --git a/docs/docs/guidelines/widget.mdx b/docs/docs/guidelines/widget.mdx index 0ceb914fc..fdd6f8bc3 100644 --- a/docs/docs/guidelines/widget.mdx +++ b/docs/docs/guidelines/widget.mdx @@ -138,6 +138,19 @@ import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; export class YourModule { } ``` +In your Angular project, locate the component that belongs to the module where you added the 'CUSTOM_ELEMENTS_SCHEMA'. + +- Inside the template, add the langflow-chat tag to include the Chat Widget in your component's view: + +```html + +``` + Here are some additional notes: - The CUSTOM_ELEMENTS_SCHEMA is a built-in schema that allows Angular to recognize custom elements.