aboutsummaryrefslogtreecommitdiff
path: root/packages/astro/test/fixtures/parallel/src/pages/index.astro
blob: b0571103ef4371fc1ab9211b8ab0b819f1cf1996 (plain) (blame)
1
2
3
4
5
6
7
8
9
---
import Delayed from '../components/Delayed.astro';
---

<Delayed ms={30} />
<Delayed ms={20} />
<Delayed ms={40} />
<Delayed ms={10} />
{[<Delayed ms={30} />, <Delayed ms={20} />, <Delayed ms={40} />, <Delayed ms={10} />]}