index.js 201 Bytes
Newer Older
1 2 3 4 5
import React from 'react';
import { Radio } from 'antd';

import styles from './index.less';

afc163's avatar
afc163 committed
6 7 8 9 10
export default props => (
  <div className={styles.radioText}>
    <Radio.Button {...props} />
  </div>
);