mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
7 lines
129 B
TypeScript
7 lines
129 B
TypeScript
|
import React from 'react';
|
||
|
import { Radio } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => <Radio>Radio</Radio>;
|
||
|
|
||
|
export default App;
|