2018-04-17 23:51:48 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2018-05-10 18:35:55 +00:00
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
import { Component, Fragment } from '@wordpress/element';
|
2018-04-17 23:51:48 +00:00
|
|
|
|
|
|
|
/**
|
2018-05-03 18:23:17 +00:00
|
|
|
* Internal dependencies
|
2018-04-17 23:51:48 +00:00
|
|
|
*/
|
2018-05-22 15:19:56 +00:00
|
|
|
import Agenda from './widgets/agenda';
|
2018-05-10 19:23:41 +00:00
|
|
|
import Header from 'components/header';
|
2018-05-18 17:31:08 +00:00
|
|
|
import Numbers from './numbers';
|
2018-04-17 23:51:48 +00:00
|
|
|
|
2018-05-18 17:31:08 +00:00
|
|
|
export default class Dashboard extends Component {
|
2018-04-17 23:51:48 +00:00
|
|
|
render() {
|
|
|
|
return (
|
2018-05-10 18:35:55 +00:00
|
|
|
<Fragment>
|
|
|
|
<Header sections={ [ __( 'Dashboard', 'woo-dash' ) ] } />
|
2018-05-18 17:31:08 +00:00
|
|
|
<Numbers />
|
2018-05-22 15:19:56 +00:00
|
|
|
<Agenda />
|
2018-05-10 18:35:55 +00:00
|
|
|
</Fragment>
|
2018-04-17 23:51:48 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|