chore: rename docs to resources

This commit is contained in:
Jean-Philippe Sirois
2019-07-29 20:48:30 -04:00
parent a833613b21
commit 8f771e194e
20 changed files with 50 additions and 50 deletions
+3 -3
View File
@@ -2,17 +2,17 @@ import React from "react"
import { graphql } from "gatsby"
import { Markdown } from "../components/Markdown"
import { SEO } from "../components/SEO"
import { DocsLayout } from "../components/DocsLayout"
import { ResourcesLayout } from "../components/ResourcesLayout"
// @todo maybe find alternative type for data
function LanguagePost({ data }: any) {
const { html, frontmatter } = data.file.post
console.log(data)
return (
<DocsLayout>
<ResourcesLayout>
<SEO title={frontmatter.title} />
<Markdown content={html} />
</DocsLayout>
</ResourcesLayout>
)
}