mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
5bf08faeea
* refactor: rename qrcode to qr-code * test: patch test case * chore: fix Form missing displayName * chore: patch displayName * chore: style path * chore: fix compile
20 lines
555 B
TypeScript
20 lines
555 B
TypeScript
import React, { useState } from 'react';
|
|
import type { QRCodeProps } from 'antd';
|
|
import { Segmented, QRCode } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const [level, setLevel] = useState<string | number>('L');
|
|
return (
|
|
<>
|
|
<QRCode
|
|
style={{ marginBottom: 16 }}
|
|
errorLevel={level as QRCodeProps['errorLevel']}
|
|
value="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"
|
|
/>
|
|
<Segmented options={['L', 'M', 'Q', 'H']} value={level} onChange={setLevel} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|