Skip to content

Examples

Here are some examples showing how to use the package in different scenarios.

Basic Usage

js
import { myFunction } from 'my-package'

// Basic example
myFunction({
  param1: 'hello',
  param2: true
})

Advanced Usage

js
// Advanced configuration
const config = {
  param1: 'world',
  param2: false,
  advanced: {
    feature: true
  }
}

myFunction(config)