UNPKG

wix-style-react

Version:
31 lines (29 loc) 721 B
import React from 'react'; import StatsWidget from '../../src/StatsWidget'; import styles from './ExampleStatsWidget.scss'; import { Container } from '../../src/Grid'; var statistics = [{ title: '$10', subtitle: 'Revenue' }, { title: '2', subtitle: 'Products' }, { title: '$1', subtitle: 'Transactions' }]; export default (function () { return React.createElement( Container, null, React.createElement( 'div', { 'data-hook': 'card-example', className: styles.statsWidgetWrapper }, React.createElement(StatsWidget, { title: 'Let\'s see what\'s going on with your store', statistics: statistics, dataHook: 'standard-stats-widget' }) ) ); });