index.js 263 B

1234567891011
  1. "use client";
  2. import Group from './group';
  3. import InternalRadio from './radio';
  4. import Button from './radioButton';
  5. export { Button, Group };
  6. const Radio = InternalRadio;
  7. Radio.Button = Button;
  8. Radio.Group = Group;
  9. Radio.__ANT_RADIO = true;
  10. export default Radio;