index.js 220 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import InternalRadio from './radio'; import Group from './group'; import Button from './radioButton'; var Radio = InternalRadio; Radio.Button = Button; Radio.Group = Group; export { Button, Group }; export default Radio;