You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
439 B
20 lines
439 B
--- |
|
slug: mdx-blog-post |
|
title: MDX Blog Post |
|
authors: [slorber] |
|
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> |
|
|
|
:::
|
|
|