startup ! yakit chrome plugin

This commit is contained in:
VillanCh
2024-03-20 20:36:21 +08:00
parent 661df0240d
commit 0914608517
10 changed files with 2066 additions and 22 deletions
-11
View File
@@ -1,11 +0,0 @@
import './App.css';
function App() {
return (
<div className="App">
Hello Ext from react!
</div>
);
}
export default App;
+20
View File
@@ -0,0 +1,20 @@
import React from 'react';
import './App.css';
import {Layout, Row} from 'antd';
function App() {
return (
<div className="App" style={{width: 300, backgroundColor: "#eee", padding: 8}}>
<Layout>
<Row>
Hello WOrld First
</Row>
<Row>
PROXY
</Row>
</Layout>
</div>
);
}
export default App;
+10
View File
@@ -0,0 +1,10 @@
import React, {useState} from "react";
export const Controller = (props) => {
const [connected, setConnected] = useState(false);
return (
<div>
</div>
)
}