2021-02-28 09:02:27 +00:00
|
|
|
/**
|
2022-06-08 01:58:25 +00:00
|
|
|
* Internal dependencies
|
2021-02-28 09:02:27 +00:00
|
|
|
*/
|
|
|
|
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 = () => {
|
2022-06-08 01:39:59 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<h2>Admin notes</h2>
|
|
|
|
<p>This section contains tools for managing admin notes.</p>
|
|
|
|
<AddNote />
|
|
|
|
<DeleteAllNotes />
|
|
|
|
</>
|
|
|
|
);
|
2021-02-28 09:02:27 +00:00
|
|
|
};
|