---
name: Markdown w/ JSX and Frontmatter
author: Ryan
---
import SomeMarkdownComponent from './my-md-component.md';
import SomeMDXComponent from './my-mdx-component.mdx';
# Hello World
> TemplateDX uses Markdown to make it readable.
[— Markdown](https://www.markdownguide.org/basic-syntax/).
## Table
Here's a table
| Item | In Stock | Price |
| :---------------- | :------: | ----: |
| Python Hat | True | 23.99 |
| SQLHat | True | 23.99 |
| Codecademy Tee | False | 19.99 |
| Codecademy Hoodie | False | 42.99 |
## Components
<SomeMarkdownComponent />
<SomeMDXComponent title="Demo" />
## Tags
<If condition={props.isAwesome}>
**TemplateDX Is Awesome!**
</If>