Add ScreenSharing (#14)

This commit is contained in:
V
2023-06-21 20:52:56 +02:00
committed by GitHub
parent 23c0647e6c
commit 253277984b
10 changed files with 424 additions and 1 deletions

View File

@@ -12,3 +12,7 @@ export const isFirstRun = (() => {
localStorage.setItem(key, "false");
return true;
})();
const { platform } = navigator;
export const isWindows = platform.startsWith("Win");