* HM-28 Добавил компонент таблицы
This commit is contained in:
mrPadre
2020-07-14 12:40:06 +03:00
committed by GitHub
parent b17313dbf6
commit 521a80c1e3
15 changed files with 186 additions and 6 deletions

View File

@ -21,6 +21,42 @@
<template id="test-button">
<button type="button" class="btn btn-primary">Проверка сборки</button>
</template>
<!-- Шаблон колонки таблицы -->
<template id="table-column">
<th scope='col' class='Table__column'></th>
</template>
<!-- Шаблон строки таблицы -->
<template id="table-row">
<tr class="Table__body-row">
<th class="Body__row-index"></th>
</tr>
</template>
<!-- Шаблон главной таблицы -->
<template id="main-table">
<table class="table table-striped">
<thead class="Table__head">
<tr class='Table__head-row'>
<th scope='col' class='Table__column'>#</th>
</tr>
</thead>
<tbody class='Table__body'>
</tbody>
</table>
</template>
<!-- Шаблон информации об апи -->
<template id="api-info">
<div class="container">
<h1 class="Info__title"></h1>
<div class="Info__body">
<div class="Info__sidebar"></div>
<div class="Info__editor"></div>
</div>
<div class="Info__footer">
</div>
</div>
</template>
</body>
</html>