index.js 227 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
import React from 'react';
import { Radio } from 'antd';

import styles from './index.less';

const RadioButton = Radio.Button;

export default props => (<div className={styles.radioText}>
  <RadioButton {...props} />
</div>);