mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
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;
|