mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 17:59:57 +08:00
7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
|
import React from 'react';
|
||
|
import { QRCode } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => <QRCode value="https://ant.design/" />;
|
||
|
|
||
|
export default App;
|