/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
docs/components/OpenSourceResources.astro
26 строк
455 B
Paweł Kuna
Add quality gates: Prettier for Astro, astro check for shared, unused SCSS variable lint (#2749)
03 авг 2026, 01:47
Не верифицирован
03 авг 2026, 01:47
8962710
Код
Авторство
О чём код?
--- 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>