feat: link to docs from sidebar

This commit is contained in:
Jean-Philippe Sirois
2019-07-27 12:30:04 -04:00
parent ba181bc4eb
commit 76d40bf183
3 changed files with 48 additions and 9 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from "react"
import DocsLayout from "../components/DocsLayout"
import SEO from "../components/SEO"
const DocsPage = () => (
<DocsLayout>
<SEO title="Docs" />
the docs
</DocsLayout>
)
export default DocsPage