UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

10 lines (9 loc) 395 B
import React from 'react'; import createClass from 'create-react-class'; import { LineChartLoadingSkeleton } from '../../../../index'; export default createClass({ render() { return (React.createElement("div", null, React.createElement(LineChartLoadingSkeleton, { isLoading: true, width: 400, numRows: 2, numColumns: 2, marginRight: 50, marginBottom: 50 }))); }, });