mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 22:10:27 +00: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;
|