docs: 添加了几个图

This commit is contained in:
2023-11-29 13:38:34 +00:00
parent 0192ed248a
commit 2c079e0475
10 changed files with 834 additions and 4 deletions

8
frontend/client/main.js Normal file
View File

@ -0,0 +1,8 @@
const { app, BrowserWindow } = require('electron');
function createWindow() {
const win = new BrowserWindow();
win.loadURL('http://localhost:4000/');
}
app.whenReady().then(createWindow);