14 lines
377 B
Plaintext
14 lines
377 B
Plaintext
---
|
|
const { cities = [] } = Astro.props;
|
|
const sorted = cities.sort((a: string, b: any) => a.localeCompare(b, "pl"));
|
|
---
|
|
|
|
<div class="fuz-cities-box">
|
|
<h4 class="fuz-cities-title">Miejscowości w zasięgu sieci światłowodowej</h4>
|
|
|
|
<div class="fuz-cities-grid">
|
|
{sorted.map((city: unknown) => (
|
|
<span class="fuz-city-item">{city}</span>
|
|
))}
|
|
</div>
|
|
</div> |