diff --git a/README.md b/README.md index 7bfdc799..02f5a2b8 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,10 @@ export default class Tree extends Component { super(props); this.state = { - treeData: [{ title: 'Chicken', children: [{ title: 'Egg' }] }], + treeData: [ + { title: 'Chicken', children: [{ title: 'Egg' }] }, + { title: 'Fish', children: [{ title: 'fingerline'}] } + ], }; }