lucid-ui
Version:
A UI component library from AppNexus.
25 lines • 574 B
JavaScript
import React from 'react';
import createClass from 'create-react-class';
import { BarChart, LoadingIndicator } from '../../../index';
export default createClass({
render: function render() {
return /*#__PURE__*/React.createElement(LoadingIndicator, {
isLoading: true
}, /*#__PURE__*/React.createElement(BarChart, {
width: 750,
data: [{
x: '2015-01-01',
y: 1
}, {
x: '2015-01-02',
y: 2
}, {
x: '2015-01-03',
y: 3
}, {
x: '2015-01-04',
y: 5
}]
}));
}
});