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