26 lines
497 B
JavaScript
26 lines
497 B
JavaScript
/** @format */
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import { Component, Fragment } from '@wordpress/element';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import Agenda from './widgets/agenda';
|
|
import Header from 'components/header';
|
|
import Numbers from './numbers';
|
|
|
|
export default class Dashboard extends Component {
|
|
render() {
|
|
return (
|
|
<Fragment>
|
|
<Header sections={ [ __( 'Dashboard', 'woo-dash' ) ] } />
|
|
<Numbers />
|
|
<Agenda />
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|