1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-08 04:12:26 +04:00
Files
tabler/docs/components/OpenSourceResources.astro
T

27 lines
455 B
Plaintext

---
import openSources from '@data/open-source.json'
---
<table class="table">
<tr>
<th> Name </th>
<th> Description </th>
<th> License </th>
</tr>
{
openSources.map((el) => {
return (
<tr>
<td>
<a href={el.url} target="_blank">
{el.name}
</a>
</td>
<td>{el.description}</td>
<td>{el.license}</td>
</tr>
)
})
}
</table>