Home



title: "My MDX Document" date: "2023-10-27"

Introduction

This is an MDX document. It allows you to write Markdown and embed React components.

React Component

Here's an example of a React component:

Code Block

function helloWorld() {
 console.log("Hello, world!");
}


helloWorld();

Here is a link to Google.

List

  • Item 1
  • Item 2
  • Item 3

```mdx
---
title: "My MDX Document"
date: "2023-10-27"
---


# Introduction


This document utilizes MDX. With it, one can combine Markdown syntax with embedded React elements.


## React Component


Take a look at this React component instance:


<InsImage src="/images/example.png" alt="Example Image">
</InsImage>


## Code Block


```javascript
function helloWorld() {
 console.log("Hello, world!");
}


helloWorld();

You can find Google at this location.

List

  • First item
  • Second item
  • Third item

<AppearanceSection></AppearanceSection>