Syntax Highlighting

July 23, 2019

This is a primary heading

This is a paragraph block.

module.exports = {
  __experimentalThemes: [
    'gatsby-theme-blog', // highlight-line
    'gatsby-theme-notes',
  ],
}

This is a another primary heading

This is another paragraph before the code block.

import React from 'react'
import { ThemeProvider } from 'theme-ui'
import theme from './theme'

export default props => (
  <ThemeProvider theme={theme}>{props.children}</ThemeProvider>
)