import {WidgetEditor} from "@site/src/components/social-widget"
The predefined component Widget
allows you to include an existing component into your code, thus enabling to create complex applications by composing components.
“`ts
const user = “gagdiez.near”;
const props = { name: “Anna” };
return (
Composing Widgets
Widgets can be composed
>
);
“`