This widget displays agenda items for WooCommerce (i.e. orders that need fulfilled, reviews to moderate, etc).
An `Agenda` widget is made up of multiple `AgendaHeader` components, each with their own `AgendaItem`.
`Agenda` acts as a wrapper widget, and will be responsible for pulling in agenda data from the API.
`AgendaHeader` displays multiple `AgendaItem` child components. All `AgendaItem`s under an `AgendaHeader` should relate to the same task at hand (example: "Orders to fulfill"). Alternatively, a link can be passed and `AgendaHeader` will act as a link instead.
`AgendaItem` contains information to each individual item (i.e. order number, date, etc). It will output an action button for acting on each item.
## How to use `Agenda`:
```jsx
import { Agenda } from 'dashboard/widgets/agenda';
render: function() {
return (
<div>
<Agenda/>
</div>
);
}
```
## How to use `AgendaHeader` and `AgendaItem`:
```jsx
import { AgendaHeader } from 'dashboard/widgets/agenda/header';
import { AgendaItem } from 'dashboard/widgets/agenda/item';