mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-27 13:46:18 +10:00
18 lines
288 B
React
18 lines
288 B
React
import React from 'react';
|
|
import AntRadio from './radio';
|
|
|
|
const RadioButton = React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
className: 'ant-radio-button'
|
|
};
|
|
},
|
|
render() {
|
|
return (
|
|
<AntRadio {...this.props} />
|
|
);
|
|
}
|
|
});
|
|
|
|
export default RadioButton;
|