Skip to content

Getting Started

Install the plugin using your preferred package manager:

Terminal window
npm install your-plugin

Import and use the plugin:

import { yourFunction } from 'your-plugin';
const result = yourFunction({
option1: 'value',
option2: true,
});

Configure the plugin by passing options:

import { configure } from 'your-plugin';
configure({
theme: 'dark',
verbose: true,
});