--------------------------------------------------------------------------------
/docs/examples/antd-react.tsx:
--------------------------------------------------------------------------------
1 | import '@ant-design/v5-patch-for-react-19';
2 | import { Button, Flex, Modal, version } from 'antd';
3 | import * as React from 'react';
4 |
5 | const App = () => {
6 | const onBtnClick = () => {
7 | Modal.info({
8 | title: 'Info',
9 | content: 'This is a message',
10 | });
11 | };
12 |
13 | return (
14 |