2018-12-22 11:46:10 +00:00
|
|
|
Analytics Components
|
|
|
|
====================
|
|
|
|
|
2019-03-13 17:14:02 +00:00
|
|
|
This folder contains components internally used by `woocommmerce-admin`.
|
2018-12-22 11:46:10 +00:00
|
|
|
|
|
|
|
## How to use:
|
|
|
|
|
|
|
|
Analytics components can be imported by their relative or absolute path.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import ReportChart from 'analytics/components/report-chart';
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<ReportChart
|
|
|
|
charts={ charts }
|
|
|
|
endpoint={ endpoint }
|
|
|
|
path={ path }
|
|
|
|
query={ query }
|
|
|
|
selectedChart={ selectedChart }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
```
|