2021-02-28 09:02:27 +00:00
|
|
|
/**
|
|
|
|
* Internal dependencies.
|
|
|
|
*/
|
|
|
|
import { DeleteAllNotes } from './delete-all-notes';
|
2021-03-03 06:27:47 +00:00
|
|
|
import { AddNote } from './add-note';
|
2021-02-28 09:02:27 +00:00
|
|
|
|
|
|
|
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/>
|
2021-02-28 09:02:27 +00:00
|
|
|
<DeleteAllNotes/>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|