mirror of
https://github.com/yaklang/yaklang-chrome-extension.git
synced 2026-09-26 21:21:53 +08:00
eval in page context
This commit is contained in:
+24
-19
@@ -1,26 +1,31 @@
|
||||
import React from "react";
|
||||
import "./App.css";
|
||||
import { ConfigProvider } from "antd";
|
||||
import { Contro } from "@components/Contro";
|
||||
import { Proxifier } from "@components/Proxifier";
|
||||
import { Controller } from "./components/Controller";
|
||||
import {ConfigProvider} from "antd";
|
||||
import {Contro} from "@components/Contro";
|
||||
import {Proxifier} from "@components/Proxifier";
|
||||
import {Controller} from "./components/Controller";
|
||||
import {Eval} from "@components/Eval";
|
||||
import {EvalInTab} from "@components/EvalInTab";
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<ConfigProvider
|
||||
theme={{
|
||||
token: {
|
||||
colorPrimary: "#F28B44",
|
||||
},
|
||||
}}
|
||||
>
|
||||
<div className="App">
|
||||
<Contro />
|
||||
<Proxifier/>
|
||||
{/* <Controller/> */}
|
||||
</div>
|
||||
</ConfigProvider>
|
||||
);
|
||||
return (
|
||||
<ConfigProvider
|
||||
theme={{
|
||||
token: {
|
||||
colorPrimary: "#F28B44",
|
||||
},
|
||||
}}
|
||||
>
|
||||
<div className="App">
|
||||
<Contro/>
|
||||
<Proxifier/>
|
||||
|
||||
<Eval/>
|
||||
<EvalInTab/>
|
||||
{/* <Controller/> */}
|
||||
</div>
|
||||
</ConfigProvider>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
|
||||
Reference in New Issue
Block a user