# WixPatternsBMProvider

**Category:** Base Components/Providers

## API

### Overview

`WixPatternsBMProvider` is the top-level provider for Wix Patterns applications running inside Wix Business Manager. It wraps your app with the necessary context (BI, fedops, translations, HTTP client, etc.). Use this as the outermost provider in your BM module entry point.

```tsx
import { WixPatternsBMProvider } from '@wix/patterns/bm';
```

---

### Example

```tsx
import React from 'react';
import { WixPatternsBMProvider } from '@wix/patterns/bm';

export default () => {
  return (
    <WixPatternsBMProvider>
      <div>App Content Goes Here</div>
    </WixPatternsBMProvider>
  );
};
```

