chore: init project

This commit is contained in:
GyDi
2021-12-04 14:31:26 +08:00
commit 1afaa4c51e
38 changed files with 4617 additions and 0 deletions

19
src/pages/home.tsx Normal file
View File

@@ -0,0 +1,19 @@
import { useState } from "react";
import { TextField } from "@material-ui/core";
const HomePage = () => {
const [port, setPort] = useState("7890");
return (
<div>
<TextField
label="Port"
fullWidth
value={port}
onChange={(e) => setPort(e.target.value)}
/>
</div>
);
};
export default HomePage;