wix-style-react
Version:
25 lines (23 loc) • 449 B
JavaScript
/* eslint-disable no-undef */
import React from 'react';
import { StatisticsWidget } from 'wix-style-react';
render(
<div style={{ background: '#fff' }}>
<StatisticsWidget
size="tiny"
items={[
{
value: '$500',
description: 'Sales',
},
{
value: '$1,500',
},
{
value: '$2,500',
description: 'Revenue',
},
]}
/>
</div>,
);