added treeview dependency

This commit is contained in:
Xetera
2019-07-27 04:14:50 -04:00
committed by Jean-Philippe Sirois
parent b7f444ff9f
commit 3c52c17227
8 changed files with 70 additions and 2 deletions
+20 -1
View File
@@ -1,5 +1,24 @@
import React from "react";
import { SidebarScroller } from "./style";
import Tree from "react-treeview";
const Sidebar = () => { }
const makeTree = () => {
}
const Sidebar = () => {
return (
<Tree
nodeLabel={<div>"Javascript"</div>}
>
<Tree
nodeLabel={<div>"Javascript"</div>}
>
Test
</Tree>
</Tree>
)
}
export default Sidebar;