aboutsummaryrefslogtreecommitdiff
path: root/packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro')
-rw-r--r--packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro b/packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro
new file mode 100644
index 000000000..49f378bc6
--- /dev/null
+++ b/packages/astro/test/fixtures/css-order-layout/src/layouts/Main.astro
@@ -0,0 +1,14 @@
+---
+import MainHead from "../components/MainHead.astro";
+import BlueButton from "../components/BlueButton.astro";
+---
+
+<html lang="en">
+ <head>
+ <MainHead />
+ </head>
+ <body>
+ <BlueButton />
+ <slot />
+ </body>
+</html>