You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**react-virtualized-tree** is a tree view react library built on top of [react-virtualized](https://bvaughn.github.io/react-virtualized/#/components/List)
23
23
24
24
Its main goal is to display tree like data in a beautiful and fast way. Being a reactive library it uses children functions to achieve maximum extensibility. The core idea behind it is that anyone using it is enable to create a tree as they intent just by rendering their own components or components exported by the tree.
25
25
26
26
Demo and docs can be found [in here](https://diogofcunha.github.io/react-virtualized-tree/#/examples/basic-tree).
27
27
28
28
## Installation
29
+
29
30
You can install via npm or yarn.
30
-
`npm i react-virtualized-tree --save`
31
+
`npm i react-virtualized-tree --save`
31
32
32
33
or
33
34
34
35
`yarn add react-virtualized-tree`
35
36
36
37
To get the basic styles for free you need to import react-virtualized styles only once.
38
+
37
39
```
38
40
import 'react-virtualized/styles.css'
39
41
import 'react-virtualized-tree/lib/main.css'
@@ -53,6 +55,6 @@ To use the FilteringContainer
53
55
54
56
`import { FilteringContainer } from 'react-virtualized-tree'`
55
57
56
-
57
58
## Dependencies
59
+
58
60
Most react-virtualized-tree Dependencies are managed internally, the only required peerDependencies are **react**, **react-dom** and **react-virtualized**.
0 commit comments