Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 606 Bytes

deck.mdx

File metadata and controls

60 lines (39 loc) · 606 Bytes
title something
Title From Frontmatter
Okay

FirstTest Page

Some content


h2 and Other Headings

h3

h4

h5
h6

Some Other Elements To Style

Bold text for instance

Italic text as well

a blockquote

  • A list of
  • Bulleted items
  1. first
  2. second
  3. third

h4 With Some Code

Let's test an inline-code element.

Hi

<button>Hi</button>
const Testing = ({ highlighting, syntax }) => (
  <Component
    color={highlighting}
    syntax={syntax}
    another={something}
    otherItems={cool}
  />
);