mirror of
https://github.com/SantaSpeen/santaspeen.ru-blog.git
synced 2026-08-30 05:41:00 +00:00
20 lines
420 B
Plaintext
20 lines
420 B
Plaintext
---
|
|
slug: mdx-blog-post
|
|
title: MDX Blog Post
|
|
tags: [docusaurus]
|
|
---
|
|
|
|
Blog posts support [Docusaurus Markdown features](https://docusaurus.io/docs/markdown-features), such as [MDX](https://mdxjs.com/).
|
|
|
|
:::tip
|
|
|
|
Use the power of React to create interactive blog posts.
|
|
|
|
```js
|
|
<button onClick={() => alert('button clicked!')}>Click me!</button>
|
|
```
|
|
|
|
<button onClick={() => alert('button clicked!')}>Click me!</button>
|
|
|
|
:::
|