# API Reference



### [Shallow Rendering](shallow.md)

```jsx
import { shallow } from 'enzyme';

const wrapper = shallow(<MyComponent />);
// ...
```


### [Full Rendering](mount.md)

```jsx
import { mount } from 'enzyme';

const wrapper = mount(<MyComponent />);
// ...
```


### [Static Rendering](render.md)

```jsx
import { render } from 'enzyme';

const wrapper = render(<MyComponent />);
// ...
```
