hello

this is a blog system

未知作者
5 分钟阅读

hello

this is a blog system

MDX allows you to use JSX in your Markdown content.

What is MDX?

MDX is a format that lets you seamlessly write JSX in your Markdown documents.

Why use MDX?

  • Write Markdown with embedded React components

  • Import and use custom components in your content

  • Full access to JavaScript expressions within Markdown

Example

Learn More

You can import and use components:

import { Chart } from './components/Chart'

<Chart data={someData} />

This makes it perfect for technical blogs and documentation sites!

Check out the MDX documentation for more information.