Skip to content

MDX Component Test

This page demonstrates that MDX is properly configured and can import custom Astro components.

MDX integration is working correctly!

Here’s some standard markdown content:

  • Bold text
  • Italic text
  • inline code
// Code block example
const greeting = "Hello, MDX!";
console.log(greeting);

You can pass props to components in MDX!

This confirms that:

  1. ✅ MDX files can be created and processed
  2. ✅ Custom Astro components can be imported
  3. ✅ Component props work correctly
  4. ✅ Standard Markdown features are preserved