Draggable Container
npm install drageDrage using npm:
bash
npm i drage
`
Usage
Here's an example of how to use Drage in combination with Tweakpane:
`js
import { Drage } from "drage"
import { Pane } from "tweakpane"
// Create a Drage container
const { contentArea } = Drage()
// Create a Tweakpane instance
const pane = new Pane({
title: "Parameters",
container: contentArea,
})
// Your customization here...
``