---
title: "React and Ant Design Example"
description: "Extracted example from ctx.libs"
---

# ctx.libs

## React and Ant Design

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

ctx.render(
  <Card title="Title">
    <Button type="primary">Click</Button>
  </Card>
);
```
