feat: 截图功能验证。

截图需要 700 ms,转换成 webp 3 s。
This commit is contained in:
2022-11-16 21:33:49 +08:00
commit fbb222ad23
39 changed files with 5301 additions and 0 deletions

10
src/main.tsx Normal file
View File

@ -0,0 +1,10 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./style.css";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>
);