mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
import Radio from './radio';
|
|
import Group from './group';
|
|
import Button from './radioButton';
|
|
|
|
export * from './interface';
|
|
|
|
Radio.Button = Button;
|
|
Radio.Group = Group;
|
|
export { Button, Group };
|
|
export default Radio;
|