d2-ui
Version:
33 lines (19 loc) • 406 B
Markdown
from 'enzyme';
const wrapper = shallow(<MyComponent />);
// ...
```
```jsx
import { mount } from 'enzyme';
const wrapper = mount(<MyComponent />);
// ...
```
```jsx
import { render } from 'enzyme';
const wrapper = render(<MyComponent />);
// ...
```
```jsx
import { shallow }