# pz-multi-basket

### Setting the Visibility of Multi Basket

```javascript
// settings.js file

module.exports = {
  // other settings
  plugins: {
    // other plugin settings
    multiBasket: true
  }
};
```

### Usage in Plugin Module System

```javascript
import PluginModule, { Component } from '@akinon/next/components/plugin-module';

<PluginModule component={Component.MultiBasket} props={{ BasketItem }} />;
```

## Props

| Property   | Type          | Description                               |
| ---------- | ------------- | ----------------------------------------- |
| BasketItem | `JSX.Element` | product component displayed in the basket |
