wix-style-react
Version:
22 lines (20 loc) • 384 B
JavaScript
/* eslint-disable no-undef */
import React from 'react';
import { StatisticsWidget } from 'wix-style-react';
render(
<div style={{ background: '#fff' }}>
<StatisticsWidget
items={[
{
description: 'Sales',
},
{
description: 'Views',
},
{
description: 'Revenue',
},
]}
/>
</div>,
);