|
1 | | -# UI Module |
| 1 | +# UI Modules |
2 | 2 |
|
3 | | - |
4 | | -A UI Module is a reusable, self-contained component built using widgets, queries, and JS Objects. |
5 | | -It enables you to package visual elements, business logic, and data integrations into a module that can be easily reused across applications. |
| 3 | +A UI Module is a reusable, self-contained component built using widgets, queries, and JS Objects. It allows you to group UI elements, logic, and data interactions into a single unit that can be reused across multiple applications. |
6 | 4 |
|
7 | 5 | In this tutorial, you will learn how to create a reusable UI Module that accepts dynamic inputs from an application. |
8 | 6 |
|
9 | 7 |
|
10 | | -:::tip What will I learn? 📝 |
11 | | -In this tutorial, you will create a reusable **User Profile Card** UI Module that displays basic user details dynamically. |
| 8 | +:::tip What will I build? 🧩 |
| 9 | +You’ll build a **User Profile Card** UI Module that displays user details like name, email, and profile photo based on values passed from the app. |
| 10 | + |
| 11 | +- **Basics**: Learn how to create and configure a UI Module. |
| 12 | +- **Dynamic Data**: Learn how to pass data from an application into the UI Module. |
| 13 | +- **Reusability**: Learn how to reuse the UI Module across multiple applications. |
12 | 14 |
|
13 | | -- 🔧 **Basics**: Learn how to create and configure a UI Module. |
14 | | -- 🔄 **Dynamic Data**: Learn how to pass data from an application into the UI Module. |
15 | | -- ♻️ **Reusability**: Discover how to reuse the UI Module across multiple applications |
| 15 | +⏱️ **Estimated time:** 15 minutes |
16 | 16 | ::: |
17 | 17 |
|
18 | 18 |
|
@@ -132,6 +132,7 @@ Use the following bindings: |
132 | 132 | | `userID` | `{{Table1.selectedRow.id}}` | |
133 | 133 | | `userImg` | `{{Table1.selectedRow.image}}` | |
134 | 134 |
|
| 135 | +Now, when you select any row in the Table widget, the corresponding user details will automatically be displayed in the UI Module. |
135 | 136 |
|
136 | 137 | </dd> |
137 | 138 |
|
|
0 commit comments