/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
shared/components/cards/tables/Progressbg.astro
32 строки
735 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 CardTitle from '@ui/CardTitle.astro' import ProgressBg from '@ui/ProgressBg.astro' import urls from '@data/urls.json' --- <div class="card"> <div class="card-body"> <CardTitle>Top Pages</CardTitle> <table class="table table-sm table-borderless"> <thead> <tr> <th>Page</th> <th class="text-end">Visitors</th> </tr> </thead> <tbody> { urls.slice(0, 8).map((url) => ( <tr> <td> <ProgressBg value={url.bounce} text={url.uri} /> </td> <td class="w-1 fw-medium text-end">{url.visitors}</td> </tr> )) } </tbody> </table> </div> </div>