style: prefer named exports

This commit is contained in:
Jean-Philippe Sirois
2019-07-27 18:04:52 -04:00
parent 4d434573d2
commit baa05d1968
12 changed files with 22 additions and 38 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import React from "react"
import Layout from "../components/Layout"
import SEO from "../components/SEO"
import { Layout } from "../components/Layout"
import { SEO } from "../components/SEO"
function NotFoundPage() {
return (
+2 -2
View File
@@ -1,7 +1,7 @@
import React from "react"
import DocsLayout from "../components/DocsLayout"
import SEO from "../components/SEO"
import { DocsLayout } from "../components/DocsLayout"
import { SEO } from "../components/SEO"
function DocsPage() {
return (
+2 -2
View File
@@ -1,8 +1,8 @@
import React from "react"
import { Link } from "gatsby"
import Layout from "../components/Layout"
import SEO from "../components/SEO"
import { Layout } from "../components/Layout"
import { SEO } from "../components/SEO"
function IndexPage() {
return (