The first commit

This commit is contained in:
2021-10-06 20:52:35 +03:00
parent 3693c53d13
commit 49a67accd4
21 changed files with 1046 additions and 0 deletions

21
src/templates/grid.js Normal file
View File

@@ -0,0 +1,21 @@
export default `<table id="notesGrid" class="uk-table uk-table-small uk-table-responsive1 uk-table-striped uk-table-hover uk-table-divider">
<thead>
<tr>
<th>Title</th>
<th>Created</th>
<th>Category</th>
<th>Content</th>
<th>Dates</th>
<th></th>
<th class="icon icon-archive"></th>
<th class="icon icon-delete"></th>
</tr>
</thead>
<tbody>
</tbody>
<tr>
<td colspan="8" class="uk-margin uk-text-right">
<button id="btnCreateNote" class="uk-button uk-button-primary" data-action="getEditForm">Create Note</button>
</td>
</tr>
</table>`