1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add a link to the latest til

This commit is contained in:
jbranchaud
2018-05-02 18:40:44 -05:00
parent 885958db5f
commit aa6d7e33fe

View File

@@ -12,8 +12,9 @@ const HelloContainer = (props) => (
);
```
If we are to shallow render the above component using Enzyme, we'll only see
things one layer deep:
If we are to [shallow render the above component using
Enzyme](http://airbnb.io/enzyme/docs/api/ShallowWrapper/shallow.html), we'll
only see things one layer deep:
```javascript
const wrapper = shallow(<HelloContainer name="World" />);