UNPKG

electron-drag-drop

Version:
15 lines (11 loc) 255 B
'use strict'; const {app, BrowserWindow} = require('electron'); require('../../index'); let win; app.on('ready', function () { win = new BrowserWindow({ width: 400, height: 550, }); win.loadURL('file://' + __dirname + '/index.html'); });