style: 样式调整

This commit is contained in:
song_xiao_lin
2024-05-15 14:43:04 +08:00
committed by go0p
parent e61f8bf041
commit 06fff8f92e
13 changed files with 822 additions and 14137 deletions
+22 -16
View File
@@ -1,22 +1,28 @@
import React from 'react';
import './App.css';
import {Layout, Row} from 'antd';
import {Controller} from "./components/Controller";
import React from "react";
import "./App.css";
import { ConfigProvider } from "antd";
import { Contro } from "@components/Contro";
import { Prox } from "@components/Prox";
// import { Controller } from "./components/Controller";
import {Proxifier} from "./components/Proxifier";
function App() {
return (
<div className="App" style={{width: 300, backgroundColor: "#eee", padding: 8}}>
<Layout>
<Row>
<Controller/>
</Row>
<Row>
<Proxifier/>
</Row>
</Layout>
</div>
);
return (
<ConfigProvider
theme={{
token: {
colorPrimary: "#F28B44",
},
}}
>
<div className="App">
{/* <Contro /> */}
<Prox />
{/* <Controller/> */}
{/* <Proxifier/> */}
</div>
</ConfigProvider>
);
}
export default App;