UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

14 lines (13 loc) 651 B
import React from 'react'; import createClass from 'create-react-class'; import { SplitButton } from '../../../index'; export default createClass({ render() { return (React.createElement("div", { style: { height: 100 } }, React.createElement(SplitButton, { direction: 'up', kind: 'primary' }, React.createElement(SplitButton.Button, null, "Save"), React.createElement(SplitButton.Button, null, "Action 01"), React.createElement(SplitButton.Button, null, "Here's Another Action"), React.createElement(SplitButton.Button, null, "And Another Action")))); }, });