Fixed tab for admin-notes

This commit is contained in:
Fernando Marichal 2021-04-23 17:18:28 -03:00
parent 31fe4ddb73
commit 3885da1fad
1 changed files with 8 additions and 8 deletions

View File

@ -5,12 +5,12 @@ import { DeleteAllNotes } from './delete-all-notes';
import { AddNote } from './add-note';
export const AdminNotes = () => {
return (
<>
<h2>Admin notes</h2>
<p>This section contains tools for managing admin notes.</p>
<AddNote />
<DeleteAllNotes />
</>
);
return (
<>
<h2>Admin notes</h2>
<p>This section contains tools for managing admin notes.</p>
<AddNote/>
<DeleteAllNotes/>
</>
);
};