kitchensink
Version:
Dispatch's awesome components and style guide
30 lines (13 loc) • 435 B
Markdown
# `.get(index) => ReactElement`
Returns the node at a given index of the current wrapper.
#### Arguments
1. `index` (`Number`): A zero-based integer indicating which node to retrieve.
#### Returns
`ReactElement`: The retrieved node.
#### Examples
```jsx
const wrapper = mount(<MyComponent />);
expect(wrapper.find(Foo).get(0).props.foo).to.equal("bar");
```
#### Related Methods
- [`.at(index) => ReactWrapper`](at.md)