diff options
Diffstat (limited to 'packages/integrations/mdx/test/fixtures/css-head-mdx/src/components/UsingMdx.astro')
-rw-r--r-- | packages/integrations/mdx/test/fixtures/css-head-mdx/src/components/UsingMdx.astro | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/integrations/mdx/test/fixtures/css-head-mdx/src/components/UsingMdx.astro b/packages/integrations/mdx/test/fixtures/css-head-mdx/src/components/UsingMdx.astro new file mode 100644 index 000000000..3ef9d7639 --- /dev/null +++ b/packages/integrations/mdx/test/fixtures/css-head-mdx/src/components/UsingMdx.astro @@ -0,0 +1,8 @@ +--- +import { getEntry, render } from 'astro:content'; + +const launchWeek = await getEntry('blog', 'using-mdx'); +const { Content } = await render(launchWeek); +--- + +<Content /> |