diff options
Diffstat (limited to 'packages/integrations/mdx/test/fixtures/css-head-mdx/src/pages/testTwo.mdx')
-rw-r--r-- | packages/integrations/mdx/test/fixtures/css-head-mdx/src/pages/testTwo.mdx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/integrations/mdx/test/fixtures/css-head-mdx/src/pages/testTwo.mdx b/packages/integrations/mdx/test/fixtures/css-head-mdx/src/pages/testTwo.mdx new file mode 100644 index 000000000..9a80ed5f0 --- /dev/null +++ b/packages/integrations/mdx/test/fixtures/css-head-mdx/src/pages/testTwo.mdx @@ -0,0 +1,15 @@ +---
+layout: '../layouts/Two.astro'
+title: "hello world"
+publishDate: "2023-01-01"
+---
+
+import HelloWorld from '../components/HelloWorld.astro';
+
+# Test
+
+123
+
+<HelloWorld />
+
+456
|