Skip to content

Commit 31e691e

Browse files
committed
Move components
1 parent 911defb commit 31e691e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
File renamed without changes.
File renamed without changes.

src/pages/404.tsx

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

4-
import Layout from "../components/Layout"
5-
import Seo from "../components/Seo"
4+
import Layout from "../components/Layout/Layout"
5+
import Seo from "../components/Seo/Seo"
66

77
interface NotFoundPageProps {
88
data: {

src/pages/index.tsx

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

4-
import Seo from "../components/Seo"
5-
import Layout from "../components/Layout"
4+
import Seo from "../components/Seo/Seo"
5+
import Layout from "../components/Layout/Layout"
66

77
interface BlogIndexProps {
88
data: {

src/templates/BlogPost.tsx

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

4-
import Layout from "../components/Layout"
5-
import Seo from "../components/Seo"
4+
import Layout from "../components/Layout/Layout"
5+
import Seo from "../components/Seo/Seo"
66

77
interface BlogPostTemplateProps {
88
data: {

0 commit comments

Comments
 (0)