diff options
Diffstat (limited to 'packages/astro/test/fixtures/hydration-race/src/pages/index.astro')
-rw-r--r-- | packages/astro/test/fixtures/hydration-race/src/pages/index.astro | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/hydration-race/src/pages/index.astro b/packages/astro/test/fixtures/hydration-race/src/pages/index.astro new file mode 100644 index 000000000..6b196b36d --- /dev/null +++ b/packages/astro/test/fixtures/hydration-race/src/pages/index.astro @@ -0,0 +1,16 @@ +--- +import One from '../components/One.jsx'; +import Wrapper from '../components/Wrapper.astro'; +--- +<html> +<head> + <title>Testing</title> +</head> +<body> + <main> + <Wrapper /> + </main> + + <One name="Three" client:idle /> +</body> +</html> |