---
title: "Using Built-in React and Components Example"
description: "Extracted example from JSX"
---

# JSX

## Using Built-in React and Components

```tsx
const { Button } = ctx.libs.antd;

ctx.render(<Button>Click</Button>);
```
