Skip to content

Commit c3bd125

Browse files
builtbydamianpieh
authored andcommitted
fix: correct capitalization for component imports in the blog starter (#10671)
1 parent 27a14af commit c3bd125

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

starters/blog/src/pages/404.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react'
22

3-
import Layout from '../components/layout'
3+
import Layout from '../components/Layout'
44
import SEO from '../components/seo'
55

66
class NotFoundPage extends React.Component {

starters/blog/src/pages/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import React from 'react'
22
import { Link, graphql } from 'gatsby'
33

4-
import Bio from '../components/bio'
5-
import Layout from '../components/layout'
4+
import Bio from '../components/Bio'
5+
import Layout from '../components/Layout'
66
import SEO from '../components/seo'
77
import { rhythm } from '../utils/typography'
88

starters/blog/src/templates/blog-post.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import React from 'react'
22
import { Link, graphql } from 'gatsby'
33

4-
import Bio from '../components/bio'
5-
import Layout from '../components/layout'
4+
import Bio from '../components/Bio'
5+
import Layout from '../components/Layout'
66
import SEO from '../components/seo'
77
import { rhythm, scale } from '../utils/typography'
88

0 commit comments

Comments
 (0)