import React from 'react';
import Radio from 'terra-form-radio';

const hiddenLabelRadioExample = () => (
  <Radio
    id="long-text"
    name="longText"
    labelText="Click to trigger the Radio. When activated, a dot shall appear. The checked state can be activated with the space bar. Form Radio have one required prop which is labelText to add text of the label."
  />
);

export default hiddenLabelRadioExample;
