mirror of
https://github.com/tabler/tabler.git
synced 2026-08-28 12:56:24 +04:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
27 lines
481 B
Plaintext
27 lines
481 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" rel="noopener noreferrer">
|
|
{el.name}
|
|
</a>
|
|
</td>
|
|
<td>{el.description}</td>
|
|
<td>{el.license}</td>
|
|
</tr>
|
|
)
|
|
})
|
|
}
|
|
</table>
|