> ## Documentation Index
> Fetch the complete documentation index at: https://help.dingtalk.io/llms.txt
> Use this file to discover all available pages before exploring further.

# JSX

> 介绍宜搭 JSX 组件的使用方式与属性说明，通过编写 JSX 代码渲染完全自定义的展示内容，满足组件库无法覆盖的展示需求。

JSX 组件允许你通过 jsx 代码渲染一个完全自定义的组件，一般用于纯展示的场景。

## 何时使用

* 用于通过 JSX 形式来自定义渲染内容。

## 组件示例

<iframe src="https://www.aliwork.com/developer/jsx-v2?isRenderNav=false" width="100%" height="480" frameBorder="0" />

## 组件属性

| 属性       | 说明              | 类型                | 默认值 |
| -------- | --------------- | ----------------- | --- |
| `render` | 展示内容，可直接返回JSX代码 | `() => ReactNode` | -   |
