My Third Post!!!
May 16, 2019
Wow! I love blogging so much already.
eec lac
Did you know that "despite its name, salted duck eggs can also be made from chicken eggs, though the taste and texture will be somewhat different, and the egg yolk will be less rich."? ([Wikipedia Link](https://en.wikipedia.org/wiki/Salted_duck_egg))
Yeah, I didn't either.
```js:title=gatsby-config.js
module.exports = {
plugins: [
"gatsby-theme-blog", // highlight-line
"gatsby-theme-notes",
],
}
```
This is another paragraph after the code block.
## This is a secondary heading
```jsx
import React from "react"
import { ThemeProvider } from "theme-ui"
import theme from "./theme"
export default props => (
<ThemeProvider theme={theme}>{props.children}</ThemeProvider>
)
```