Last active 1743282034

index.astro Raw
1---
2// Request Data
3const Teams = await fetch('https://example.org/data.json').then((response) => response.json())
4---
5
6<!-- Map JSON Data -->
7{Teams.map((team) =>
8 {
9 <div class="team">
10 <h2>{team.name}</h2>
11 <p>{team.amount} Members</p>
12 </div>
13 }
14)}
15
16<!-- Get specific data, this example grabs data from the 12th entry -->
17{Team[12].name}