2018-07-09 15:46:31 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
import { Component } from '@wordpress/element';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2018-07-16 18:37:25 +00:00
|
|
|
import ActivityHeader from '../activity-header';
|
2018-07-09 15:46:31 +00:00
|
|
|
|
|
|
|
class StockPanel extends Component {
|
|
|
|
render() {
|
2018-07-10 12:48:06 +00:00
|
|
|
return <ActivityHeader title={ __( 'Stock', 'wc-admin' ) } />;
|
2018-07-09 15:46:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default StockPanel;
|