mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
11c0a6a203
Where necessary, prefix the classes imported from react-component with 'Rc' rather than prefixing the Ant classes with 'Ant'. The prefixing of Ant classes wasn't consistent and isn't necessary in many cases.
8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
import Radio from './radio';
|
|
import Group from './group';
|
|
import Button from './radioButton';
|
|
|
|
Radio.Button = Button;
|
|
Radio.Group = Group;
|
|
export default Radio;
|