We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5a9013 commit f54fe2cCopy full SHA for f54fe2c
README.md
@@ -29,15 +29,12 @@ import React from 'react';
29
import CheckboxTree from 'react-checkbox-tree';
30
31
const nodes = [{
32
- value: 'node-1',
33
- title: 'Parent Node 1',
34
- children: [{
35
- value: 'node-1-1',
36
- title: 'Leaf Node 1-1',
37
- }, {
38
- value: 'node-1-2',
39
- title: 'Leaf Node 1-2',
40
- }],
+ value: 'mars',
+ title: 'Mars',
+ children: [
+ { value: 'phobos', title: 'Phobos' },
+ { value: 'deimos', title: 'Deimos' },
+ ],
41
}];
42
43
class Widget extends React.Component {
0 commit comments