Skip to content

Commit

Permalink
chore(docs): Fix path to components in part 6 (gatsbyjs#36463)
Browse files Browse the repository at this point in the history
Fix path

The path to the component was incorrect
  • Loading branch information
IObert authored Aug 25, 2022
1 parent 613729d commit 9647517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/tutorial/part-6/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ When you build your site, Gatsby looks at the page components in your `src/pages
```js:title=src/pages/{mdx.frontmatter__slug}.js
import * as React from 'react'
import Layout from '../components/layout'
import Seo from '../../components/seo'
import Seo from '../components/seo'

const BlogPost = () => {
return (
Expand Down

0 comments on commit 9647517

Please sign in to comment.