UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

18 lines (17 loc) 711 B
import React from 'react'; import createClass from 'create-react-class'; import { RadioGroup } from '../../../index'; const style = { marginRight: '13px', }; export default createClass({ render() { return (React.createElement(RadioGroup, null, React.createElement(RadioGroup.RadioButton, { style: style }, React.createElement(RadioGroup.Label, null, "Alvin")), React.createElement(RadioGroup.RadioButton, { style: style }, React.createElement(RadioGroup.Label, null, "Simon")), React.createElement(RadioGroup.RadioButton, { style: style }, React.createElement(RadioGroup.Label, null, "Theodore")))); }, });