woocommerce/src/admin-notes/admin-notes.js

15 lines
304 B
JavaScript
Raw Normal View History

/**
* Internal dependencies.
*/
import { DeleteAllNotes } from './delete-all-notes';
export const AdminNotes = () => {
return (
<>
<h2>Admin notes</h2>
<p>This section contains tools for managing admin notes.</p>
<DeleteAllNotes/>
</>
);
};