mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-19 20:08:43 +08:00
20 lines
536 B
TypeScript
20 lines
536 B
TypeScript
import React, { useState } from 'react';
|
|
import type { QRCodeProps } from 'antd';
|
|
import { QRCode, Segmented } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const [level, setLevel] = useState<QRCodeProps['errorLevel']>('L');
|
|
return (
|
|
<>
|
|
<QRCode
|
|
style={{ marginBottom: 16 }}
|
|
errorLevel={level}
|
|
value="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"
|
|
/>
|
|
<Segmented options={['L', 'M', 'Q', 'H']} value={level} onChange={setLevel} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|