aboutsummaryrefslogtreecommitdiff
path: root/packages/astro/test/fixtures/server-islands/ssr/src/pages/index.astro
blob: d42973294e6d32bb173b565e99d98a3195d77c05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
import Island from '../components/Island.astro';
---
<html>
<head>
  <title>Testing</title>
</head>
<body>
  <h1>Testing</h1>
  <Island server:defer />
</body>
</html>