mirror of
https://github.com/tabler/tabler.git
synced 2026-08-08 04:12:26 +04:00
8962710163
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
27 lines
455 B
Plaintext
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>
|