import React from 'react'; import { Flex, Radio } from 'antd'; const options = [ { label: 'Apple', value: 'Apple' }, { label: 'Pear', value: 'Pear' }, { label: 'Orange', value: 'Orange' }, ]; const App: React.FC = () => ( ); export default App;