added treeview dependency

This commit is contained in:
Xetera
2019-07-27 15:52:25 -04:00
committed by Jean-Philippe Sirois
parent 80f91b5dc1
commit 378bb7d4db
8 changed files with 70 additions and 2 deletions
+2
View File
@@ -2,6 +2,7 @@ import React from "react";
import { graphql } from "gatsby";
import SEO from "../components/SEO";
import Layout from "../components/Layout";
import { Sidebar } from "../components/Docs";
// @todo maybe find alternative type for data
const LanguagePost = ({ data }: any) => {
@@ -10,6 +11,7 @@ const LanguagePost = ({ data }: any) => {
return (
<Layout>
<SEO title={frontmatter.title} />
<Sidebar />
<div dangerouslySetInnerHTML={{ __html: html }} />
</Layout >
)