woocommerce/plugins/woocommerce-beta-tester/src/admin-notes/admin-notes.js

17 lines
365 B
JavaScript
Raw Normal View History

/**
* Internal dependencies.
*/
import { DeleteAllNotes } from './delete-all-notes';
2021-03-03 06:27:47 +00:00
import { AddNote } from './add-note';
export const AdminNotes = () => {
return (
<>
<h2>Admin notes</h2>
<p>This section contains tools for managing admin notes.</p>
2021-03-03 06:27:47 +00:00
<AddNote/>
<DeleteAllNotes/>
</>
);
};