mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-06 16:06:12 +02:00
style: prefer named exports
This commit is contained in:
+2
-2
@@ -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
@@ -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
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user