mirror of
https://github.com/yaklang/yaklang-chrome-extension.git
synced 2026-09-26 21:21:53 +08:00
startup ! yakit chrome plugin
This commit is contained in:
-11
@@ -1,11 +0,0 @@
|
||||
import './App.css';
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<div className="App">
|
||||
Hello Ext from react!
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
+20
@@ -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;
|
||||
@@ -0,0 +1,10 @@
|
||||
import React, {useState} from "react";
|
||||
|
||||
export const Controller = (props) => {
|
||||
const [connected, setConnected] = useState(false);
|
||||
return (
|
||||
<div>
|
||||
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user