blob: 1804388b0524cf56ba498de15e2d0c4bc90d79e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
---
import { getEntryBySlug } from 'astro:content';
const launchWeek = await getEntryBySlug('blog', 'using-mdx');
const { Content } = await launchWeek.render();
---
<Content />
|