UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

13 lines (12 loc) 514 B
import _ from 'lodash'; import React from 'react'; import createClass from 'create-react-class'; import { ExpanderPanel } from '../../../index'; export default createClass({ render() { return (React.createElement("div", null, React.createElement(ExpanderPanel, { hasPadding: false }, React.createElement(ExpanderPanel.Header, null, "Show More"), _.times(100, n => (React.createElement("div", { key: n }, _.repeat('-', 75 * Math.sin(n / 5)))))))); }, });