# WixPatternsGizaProvider

**Category:** Base Components/Providers

## API

### Overview

`WixPatternsGizaProvider` is the provider for Wix Patterns applications running in the Giza (Editor) environment. It supplies the container context for editor-based applications.

```tsx
import { WixPatternsGizaProvider } from '@wix/patterns/giza';
```

---

### Yoshi Flow BM

Requires `@wix/yoshi-flow-bm@^6.49.1` and above

---

### Example

```tsx
import React from 'react';
import { WixPatternsGizaProvider } from '@wix/patterns/giza';

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

