lucid-ui
Version:
A UI component library from AppNexus.
16 lines • 625 B
JavaScript
import _repeat from "lodash/repeat";
import _times from "lodash/times";
import React from 'react';
import createClass from 'create-react-class';
import { ExpanderPanel } from '../../../index';
export default createClass({
render: function render() {
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(ExpanderPanel, {
hasPadding: false
}, /*#__PURE__*/React.createElement(ExpanderPanel.Header, null, "Show More"), _times(100, function (n) {
return /*#__PURE__*/React.createElement("div", {
key: n
}, _repeat('-', 75 * Math.sin(n / 5)));
})));
}
});