diff options
Diffstat (limited to 'packages/integrations/mdx/test/fixtures/css-head-mdx/src/pages/indexTwo.astro')
-rw-r--r-- | packages/integrations/mdx/test/fixtures/css-head-mdx/src/pages/indexTwo.astro | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/integrations/mdx/test/fixtures/css-head-mdx/src/pages/indexTwo.astro b/packages/integrations/mdx/test/fixtures/css-head-mdx/src/pages/indexTwo.astro new file mode 100644 index 000000000..af07af926 --- /dev/null +++ b/packages/integrations/mdx/test/fixtures/css-head-mdx/src/pages/indexTwo.astro @@ -0,0 +1,10 @@ +---
+import Two from '../layouts/Two.astro'
+
+import { Content } from '../test.mdx'
+---
+
+<Two>
+ <h1>Astro</h1>
+ <Content />
+</Two>
|